Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
ConferenceBookingView
Please create a React-JS view called "ConferenceBookingView" for the fields of the ConferenceBooking entity. The ConferenceBookingView must contain the following fields: - name: AttendeeCount type: LONG - name: ConferenceRoom type: ConferenceRoom - name: CreatedAt type: DATE - name: Customer type: Customer - name: Description type: STRING - name: EndDateTime type: DATE - name: StartDateTime type: DATE - name: Status type: STRING - name: Title type: STRING The data source for the [Customer] select control should be loaded from the relative URL: "/CustomerService/customer" (HTTP-GET) The data source for the [ConferenceRoom] select control should be loaded from the relative URL: "/ConferenceRoomService/conferenceroom" (HTTP-GET) An existing ConferenceBooking entity should be loaded from the relative URL: "/CustomerService/conferencebooking/{id}" (HTTP-GET) If a new ConferenceBooking entity has been created, the new entity should be posted to the relative URL: "/CustomerService/conferencebooking" (HTTP-POST) If an existing ConferenceBooking entity has been updated, the modified entity should be sent to the relative URL: "/CustomerService/conferencebooking/{id}" (HTTP-PUT) If an existing ConferenceBooking entity has to be deleted, the following relative URL should be called: "/CustomerService/conferencebooking/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum