Overview
Summary
Services
Contact
Donate
About
Imprint
Prompt for the
SeatConfigurationView
Please create a React-JS view called "SeatConfigurationView" for the fields of the SeatConfiguration entity. The SeatConfigurationView must contain the following fields: - name: AircraftModel type: AircraftModel - name: CabinClass type: CabinClass - name: SeatCount type: LONG - name: SeatPitchInch type: LONG - name: SeatWidthInch type: LONG The data source for the [CabinClass] select control should be loaded from the relative URL: "/CabinClassService/cabinclass" (HTTP-GET) The data source for the [AircraftModel] select control should be loaded from the relative URL: "/AircraftModelService/aircraftmodel" (HTTP-GET) An existing SeatConfiguration entity should be loaded from the relative URL: "/CabinClassService/seatconfiguration/{id}" (HTTP-GET) If a new SeatConfiguration entity has been created, the new entity should be posted to the relative URL: "/CabinClassService/seatconfiguration" (HTTP-POST) If an existing SeatConfiguration entity has been updated, the modified entity should be sent to the relative URL: "/CabinClassService/seatconfiguration/{id}" (HTTP-PUT) If an existing SeatConfiguration entity has to be deleted, the following relative URL should be called: "/CabinClassService/seatconfiguration/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Services
Contact
Donate
About
Imprint