Overview
Summary
Contact
Donate
Imprint
Prompt for the
BookingStatusHistoryView
Please create a React-JS view called "BookingStatusHistoryView" for the fields of the BookingStatusHistory entity. The BookingStatusHistoryView must contain the following fields: - name: Booking type: Booking - name: ChangedAt type: DATE - name: ChangedBySystem type: BOOL - name: Notes type: STRING - name: Status type: STRING The data source for the [Booking] select control should be loaded from the relative URL: "/BookingService/booking" (HTTP-GET) An existing BookingStatusHistory entity should be loaded from the relative URL: "/BookingService/bookingstatushistory/{id}" (HTTP-GET) If a new BookingStatusHistory entity has been created, the new entity should be posted to the relative URL: "/BookingService/bookingstatushistory" (HTTP-POST) If an existing BookingStatusHistory entity has been updated, the modified entity should be sent to the relative URL: "/BookingService/bookingstatushistory/{id}" (HTTP-PUT) If an existing BookingStatusHistory entity has to be deleted, the following relative URL should be called: "/BookingService/bookingstatushistory/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint