Overview
Summary
Contact
Donate
Imprint
Prompt for the
FlightPassengerView
Please create a React-JS view called "FlightPassengerView" for the fields of the FlightPassenger entity. The FlightPassengerView must contain the following fields: - name: DateOfBirth type: DATE - name: DocumentNumber type: STRING - name: FlightBooking type: FlightBooking - name: FullName type: STRING - name: NationalityCountry type: LocationCountry - name: PassengerType type: STRING The data source for the [FlightBooking] select control should be loaded from the relative URL: "/CurrencyService/flightbooking" (HTTP-GET) The data source for the [NationalityCountry] select control should be loaded from the relative URL: "/LocationCityService/locationcountry" (HTTP-GET) An existing FlightPassenger entity should be loaded from the relative URL: "/LocationCityService/flightpassenger/{id}" (HTTP-GET) If a new FlightPassenger entity has been created, the new entity should be posted to the relative URL: "/LocationCityService/flightpassenger" (HTTP-POST) If an existing FlightPassenger entity has been updated, the modified entity should be sent to the relative URL: "/LocationCityService/flightpassenger/{id}" (HTTP-PUT) If an existing FlightPassenger entity has to be deleted, the following relative URL should be called: "/LocationCityService/flightpassenger/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint