Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
ConferenceRoomView
Please create a React-JS view called "ConferenceRoomView" for the fields of the ConferenceRoom entity. The ConferenceRoomView must contain the following fields: - name: Capacity type: LONG - name: Description type: STRING - name: Floor type: STRING - name: Name type: STRING - name: RoomNumber type: STRING - name: VenueArea type: VenueArea The data source for the [VenueArea] select control should be loaded from the relative URL: "/VenueAreaService/venuearea" (HTTP-GET) An existing ConferenceRoom entity should be loaded from the relative URL: "/ConferenceRoomService/conferenceroom/{id}" (HTTP-GET) If a new ConferenceRoom entity has been created, the new entity should be posted to the relative URL: "/ConferenceRoomService/conferenceroom" (HTTP-POST) If an existing ConferenceRoom entity has been updated, the modified entity should be sent to the relative URL: "/ConferenceRoomService/conferenceroom/{id}" (HTTP-PUT) If an existing ConferenceRoom entity has to be deleted, the following relative URL should be called: "/ConferenceRoomService/conferenceroom/{id}" (HTTP-DELETE) Add a HTML table to the view with the following ConferenceBooking columns: - column: Description - column: ConferenceRoom - column: Customer - column: EndDateTime - column: Title - column: StartDateTime - column: Status - column: AttendeeCount - column: CreatedAt The table should have the title "ConferenceBookings" und the data must be loaded from the server with the following relative URL: "/CustomerService/conferencebooking/conferenceroom/{id}" Add a HTML table to the view with the following ConferenceRoomEquipment columns: - column: ConferenceEquipment - column: Quantity - column: ConferenceRoom The table should have the title "ConferenceRoomEquipments" und the data must be loaded from the server with the following relative URL: "/ConferenceRoomService/conferenceroomequipment/conferenceroom/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum