Overview
Summary
Contact
Donate
Imprint
Prompt for the
VehicleBatteryOptionView
Please create a React-JS view called "VehicleBatteryOptionView" for the fields of the VehicleBatteryOption entity. The VehicleBatteryOptionView must contain the following fields: - name: BatteryPack type: BatteryPack - name: EndYear type: INT - name: IsPerformanceVariant type: BOOL - name: OptionName type: STRING - name: RangeKm type: INT - name: StartYear type: INT - name: VehicleModel type: VehicleModel The data source for the [VehicleModel] select control should be loaded from the relative URL: "/VehicleModelService/vehiclemodel" (HTTP-GET) The data source for the [BatteryPack] select control should be loaded from the relative URL: "/BatteryPackService/batterypack" (HTTP-GET) An existing VehicleBatteryOption entity should be loaded from the relative URL: "/VehicleModelService/vehiclebatteryoption/{id}" (HTTP-GET) If a new VehicleBatteryOption entity has been created, the new entity should be posted to the relative URL: "/VehicleModelService/vehiclebatteryoption" (HTTP-POST) If an existing VehicleBatteryOption entity has been updated, the modified entity should be sent to the relative URL: "/VehicleModelService/vehiclebatteryoption/{id}" (HTTP-PUT) If an existing VehicleBatteryOption entity has to be deleted, the following relative URL should be called: "/VehicleModelService/vehiclebatteryoption/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint