Overview
Summary
Contact
Donate
Imprint
Prompt for the
AirportTransferBookingView
Please create a React-JS view called "AirportTransferBookingView" for the fields of the AirportTransferBooking entity. The AirportTransferBookingView must contain the following fields: - name: AirportTransferProduct type: AirportTransferProduct - name: Booking type: Booking - name: Currency type: Currency - name: DropoffAddress type: STRING - name: Passengers type: INT - name: PickupAddress type: STRING - name: PickupDateTime type: DATE - name: TotalAmount type: STRING The data source for the [Currency] select control should be loaded from the relative URL: "/CurrencyService/currency" (HTTP-GET) The data source for the [Booking] select control should be loaded from the relative URL: "/BookingService/booking" (HTTP-GET) The data source for the [AirportTransferProduct] select control should be loaded from the relative URL: "/AirportService/airporttransferproduct" (HTTP-GET) An existing AirportTransferBooking entity should be loaded from the relative URL: "/BookingService/airporttransferbooking/{id}" (HTTP-GET) If a new AirportTransferBooking entity has been created, the new entity should be posted to the relative URL: "/BookingService/airporttransferbooking" (HTTP-POST) If an existing AirportTransferBooking entity has been updated, the modified entity should be sent to the relative URL: "/BookingService/airporttransferbooking/{id}" (HTTP-PUT) If an existing AirportTransferBooking entity has to be deleted, the following relative URL should be called: "/BookingService/airporttransferbooking/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint