Overview
Summary
Contact
Donate
Imprint
Prompt for the
TruckingOperationView
Please create a React-JS view called "TruckingOperationView" for the fields of the TruckingOperation entity. The TruckingOperationView must contain the following fields: - name: EndDate type: DATE - name: HubCity type: STRING - name: HubState type: STRING - name: Notes type: STRING - name: PartnerCompany type: Company - name: Program type: Program - name: StartDate type: DATE - name: VehicleModel type: VehicleModel The data source for the [PartnerCompany] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) The data source for the [VehicleModel] select control should be loaded from the relative URL: "/VehicleModelService/vehiclemodel" (HTTP-GET) The data source for the [Program] select control should be loaded from the relative URL: "/ProgramService/program" (HTTP-GET) An existing TruckingOperation entity should be loaded from the relative URL: "/VehicleModelService/truckingoperation/{id}" (HTTP-GET) If a new TruckingOperation entity has been created, the new entity should be posted to the relative URL: "/VehicleModelService/truckingoperation" (HTTP-POST) If an existing TruckingOperation entity has been updated, the modified entity should be sent to the relative URL: "/VehicleModelService/truckingoperation/{id}" (HTTP-PUT) If an existing TruckingOperation entity has to be deleted, the following relative URL should be called: "/VehicleModelService/truckingoperation/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint