Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
VorstellungView
Please create a React-JS view called "VorstellungView" for the fields of the Vorstellung entity. The VorstellungView must contain the following fields: - name: BasisTicketpreis type: DOUBLE - name: DigitalStandard type: DigitalStandard - name: Endzeit type: DATE - name: Film type: Film - name: Ist3D type: BOOL - name: IstEffektkino type: BOOL - name: ProjektionsTechnik type: ProjektionsTechnik - name: Saal type: Saal - name: Sprachversion type: STRING - name: Startzeit type: DATE - name: TonTechnik type: TonTechnik The data source for the [Film] select control should be loaded from the relative URL: "/FilmService/film" (HTTP-GET) The data source for the [TonTechnik] select control should be loaded from the relative URL: "/FilmService/tontechnik" (HTTP-GET) The data source for the [DigitalStandard] select control should be loaded from the relative URL: "/FilmService/digitalstandard" (HTTP-GET) The data source for the [ProjektionsTechnik] select control should be loaded from the relative URL: "/ProjektionsTechnikService/projektionstechnik" (HTTP-GET) The data source for the [Saal] select control should be loaded from the relative URL: "/SaalService/saal" (HTTP-GET) An existing Vorstellung entity should be loaded from the relative URL: "/FilmService/vorstellung/{id}" (HTTP-GET) If a new Vorstellung entity has been created, the new entity should be posted to the relative URL: "/FilmService/vorstellung" (HTTP-POST) If an existing Vorstellung entity has been updated, the modified entity should be sent to the relative URL: "/FilmService/vorstellung/{id}" (HTTP-PUT) If an existing Vorstellung entity has to be deleted, the following relative URL should be called: "/FilmService/vorstellung/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Ticket columns: - column: Steuersatz - column: Verkaufszeit - column: IstErmaessigt - column: Vorstellung - column: PreisGezahlt The table should have the title "Tickets" und the data must be loaded from the server with the following relative URL: "/LandService/ticket/vorstellung/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum