Overview
Summary
Contact
Donate
Imprint
Prompt for the
StayGuestView
Please create a React-JS view called "StayGuestView" for the fields of the StayGuest entity. The StayGuestView must contain the following fields: - name: Age type: INT - name: Email type: STRING - name: FullName type: STRING - name: IsPrimary type: BOOL - name: PhoneNumber type: STRING - name: StayBooking type: StayBooking The data source for the [StayBooking] select control should be loaded from the relative URL: "/StayBookingService/staybooking" (HTTP-GET) An existing StayGuest entity should be loaded from the relative URL: "/StayBookingService/stayguest/{id}" (HTTP-GET) If a new StayGuest entity has been created, the new entity should be posted to the relative URL: "/StayBookingService/stayguest" (HTTP-POST) If an existing StayGuest entity has been updated, the modified entity should be sent to the relative URL: "/StayBookingService/stayguest/{id}" (HTTP-PUT) If an existing StayGuest entity has to be deleted, the following relative URL should be called: "/StayBookingService/stayguest/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint