Overview
Summary
Contact
Donate
Imprint
Prompt for the
ChargingLocationView
Please create a React-JS view called "ChargingLocationView" for the fields of the ChargingLocation entity. The ChargingLocationView must contain the following fields: - name: ChargingNetwork type: ChargingNetwork - name: City type: City - name: ConnectorCount type: INT - name: LocationName type: STRING - name: Notes type: STRING - name: OpeningYear type: INT - name: StationCount type: INT The data source for the [ChargingNetwork] select control should be loaded from the relative URL: "/BusinessSegmentService/chargingnetwork" (HTTP-GET) The data source for the [City] select control should be loaded from the relative URL: "/CityService/city" (HTTP-GET) An existing ChargingLocation entity should be loaded from the relative URL: "/BusinessSegmentService/charginglocation/{id}" (HTTP-GET) If a new ChargingLocation entity has been created, the new entity should be posted to the relative URL: "/BusinessSegmentService/charginglocation" (HTTP-POST) If an existing ChargingLocation entity has been updated, the modified entity should be sent to the relative URL: "/BusinessSegmentService/charginglocation/{id}" (HTTP-PUT) If an existing ChargingLocation entity has to be deleted, the following relative URL should be called: "/BusinessSegmentService/charginglocation/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint