Overview
Summary
Contact
Donate
Imprint
Prompt for the
VehicleModelView
Please create a React-JS view called "VehicleModelView" for the fields of the VehicleModel entity. The VehicleModelView must contain the following fields: - name: Manufacturer type: STRING - name: ModelName type: STRING - name: Notes type: STRING - name: PowertrainType type: STRING - name: VehicleClass type: STRING An existing VehicleModel entity should be loaded from the relative URL: "/VehicleModelService/vehiclemodel/{id}" (HTTP-GET) If a new VehicleModel entity has been created, the new entity should be posted to the relative URL: "/VehicleModelService/vehiclemodel" (HTTP-POST) If an existing VehicleModel entity has been updated, the modified entity should be sent to the relative URL: "/VehicleModelService/vehiclemodel/{id}" (HTTP-PUT) If an existing VehicleModel entity has to be deleted, the following relative URL should be called: "/VehicleModelService/vehiclemodel/{id}" (HTTP-DELETE) Add a HTML table to the view with the following TruckingOperation columns: - column: HubCity - column: Notes - column: EndDate - column: PartnerCompany - column: VehicleModel - column: StartDate - column: Program - column: HubState The table should have the title "TruckingOperations" und the data must be loaded from the server with the following relative URL: "/VehicleModelService/truckingoperation/vehiclemodel/{id}" Add a HTML table to the view with the following FleetVehicleType columns: - column: VehicleModel - column: UseCase - column: Notes - column: Generation - column: EndUseDate - column: StartUseDate The table should have the title "FleetVehicleTypes" und the data must be loaded from the server with the following relative URL: "/VehicleModelService/fleetvehicletype/vehiclemodel/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint