Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
BuchungView
Please create a React-JS view called "BuchungView" for the fields of the Buchung entity. The BuchungView must contain the following fields: - name: BeginnDatum type: DATE - name: BuchungsDatum type: DATE - name: EndeDatum type: DATE - name: Gast type: Gast - name: Gesamtpreis type: STRING - name: Status type: STRING - name: Unterkunft type: Unterkunft - name: Vermittler type: Vermittler The data source for the [Unterkunft] select control should be loaded from the relative URL: "/UnterkunftService/unterkunft" (HTTP-GET) The data source for the [Vermittler] select control should be loaded from the relative URL: "/VermittlerService/vermittler" (HTTP-GET) The data source for the [Gast] select control should be loaded from the relative URL: "/BuchungService/gast" (HTTP-GET) An existing Buchung entity should be loaded from the relative URL: "/BuchungService/buchung/{id}" (HTTP-GET) If a new Buchung entity has been created, the new entity should be posted to the relative URL: "/BuchungService/buchung" (HTTP-POST) If an existing Buchung entity has been updated, the modified entity should be sent to the relative URL: "/BuchungService/buchung/{id}" (HTTP-PUT) If an existing Buchung entity has to be deleted, the following relative URL should be called: "/BuchungService/buchung/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Zahlung columns: - column: Status - column: Methode - column: ZahlungsDatum - column: Buchung - column: Betrag The table should have the title "Zahlungs" und the data must be loaded from the server with the following relative URL: "/BuchungService/zahlung/buchung/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum