Overview
Summary
Contact
Donate
Imprint
Prompt for the
VehicleSalesStatView
Please create a React-JS view called "VehicleSalesStatView" for the fields of the VehicleSalesStat entity. The VehicleSalesStatView must contain the following fields: - name: CalendarYear type: INT - name: IsGlobal type: BOOL - name: MarketRegion type: STRING - name: Note type: STRING - name: UnitsSold 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) An existing VehicleSalesStat entity should be loaded from the relative URL: "/VehicleModelService/vehiclesalesstat/{id}" (HTTP-GET) If a new VehicleSalesStat entity has been created, the new entity should be posted to the relative URL: "/VehicleModelService/vehiclesalesstat" (HTTP-POST) If an existing VehicleSalesStat entity has been updated, the modified entity should be sent to the relative URL: "/VehicleModelService/vehiclesalesstat/{id}" (HTTP-PUT) If an existing VehicleSalesStat entity has to be deleted, the following relative URL should be called: "/VehicleModelService/vehiclesalesstat/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint