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