Overview
Summary
Contact
Donate
Imprint
Prompt for the
DriverVehicleView
Please create a React-JS view called "DriverVehicleView" for the fields of the DriverVehicle entity. The DriverVehicleView must contain the following fields: - name: DriverAccount type: DriverAccount - name: EndDate type: DATE - name: PrimaryFlag type: BOOL - name: StartDate type: DATE - name: Vehicle type: Vehicle The data source for the [Vehicle] select control should be loaded from the relative URL: "/VehicleService/vehicle" (HTTP-GET) The data source for the [DriverAccount] select control should be loaded from the relative URL: "/VehicleService/driveraccount" (HTTP-GET) An existing DriverVehicle entity should be loaded from the relative URL: "/VehicleService/drivervehicle/{id}" (HTTP-GET) If a new DriverVehicle entity has been created, the new entity should be posted to the relative URL: "/VehicleService/drivervehicle" (HTTP-POST) If an existing DriverVehicle entity has been updated, the modified entity should be sent to the relative URL: "/VehicleService/drivervehicle/{id}" (HTTP-PUT) If an existing DriverVehicle entity has to be deleted, the following relative URL should be called: "/VehicleService/drivervehicle/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint