Overview
Summary
Contact
Donate
Imprint
Prompt for the
CarRentalBookingView
Please create a React-JS view called "CarRentalBookingView" for the fields of the CarRentalBooking entity. The CarRentalBookingView must contain the following fields: - name: Booking type: Booking - name: CarRentalProduct type: CarRentalProduct - name: Currency type: Currency - name: DropoffDateTime type: DATE - name: DropoffLocation type: CarRentalLocation - name: PickupDateTime type: DATE - name: PickupLocation type: CarRentalLocation - name: TotalAmount type: STRING The data source for the [PickupLocation] select control should be loaded from the relative URL: "/CarRentalLocationService/carrentallocation" (HTTP-GET) The data source for the [CarRentalProduct] select control should be loaded from the relative URL: "/CarCategoryService/carrentalproduct" (HTTP-GET) 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 [DropoffLocation] select control should be loaded from the relative URL: "/CarRentalLocationService/carrentallocation" (HTTP-GET) An existing CarRentalBooking entity should be loaded from the relative URL: "/CarRentalLocationService/carrentalbooking/{id}" (HTTP-GET) If a new CarRentalBooking entity has been created, the new entity should be posted to the relative URL: "/CarRentalLocationService/carrentalbooking" (HTTP-POST) If an existing CarRentalBooking entity has been updated, the modified entity should be sent to the relative URL: "/CarRentalLocationService/carrentalbooking/{id}" (HTTP-PUT) If an existing CarRentalBooking entity has to be deleted, the following relative URL should be called: "/CarRentalLocationService/carrentalbooking/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint