Overview
Summary
Contact
Donate
Imprint
Prompt for the
BookingSeatView
Please create a React-JS view called "BookingSeatView" for the fields of the BookingSeat entity. The BookingSeatView must contain the following fields: - name: Booking type: Booking - name: Currency type: STRING - name: FlightSeat type: FlightSeat - name: Price type: STRING The data source for the [FlightSeat] select control should be loaded from the relative URL: "/FlightService/flightseat" (HTTP-GET) The data source for the [Booking] select control should be loaded from the relative URL: "/CustomerService/booking" (HTTP-GET) An existing BookingSeat entity should be loaded from the relative URL: "/FlightService/bookingseat/{id}" (HTTP-GET) If a new BookingSeat entity has been created, the new entity should be posted to the relative URL: "/FlightService/bookingseat" (HTTP-POST) If an existing BookingSeat entity has been updated, the modified entity should be sent to the relative URL: "/FlightService/bookingseat/{id}" (HTTP-PUT) If an existing BookingSeat entity has to be deleted, the following relative URL should be called: "/FlightService/bookingseat/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint