Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
VermittlerApp
Please create a React-JS application for the VermittlerModule. The application has to offer the following views for the user interface: 1. AusstattungView 2. LaenderspezifischesModellView 3. RechtsbeschraenkungView 4. VermittlerView 5. VermittlerProvisionView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 5 views are defined below. 1. The AusstattungView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing Ausstattung entity should be loaded from the relative URL: "/VermittlerService/ausstattung/{id}" (HTTP-GET) If a new Ausstattung entity has been created, the new entity should be posted to the relative URL: "/VermittlerService/ausstattung" (HTTP-POST) If an existing Ausstattung entity has been updated, the modified entity should be sent to the relative URL: "/VermittlerService/ausstattung/{id}" (HTTP-PUT) If an existing Ausstattung entity has to be deleted, the following relative URL should be called: "/VermittlerService/ausstattung/{id}" (HTTP-DELETE) Add a HTML table to the view with the following UnterkunftAusstattung columns: - column: Ausstattung - column: Unterkunft The table should have the title "UnterkunftAusstattungs" und the data must be loaded from the server with the following relative URL: "/UnterkunftService/unterkunftausstattung/ausstattung/{id}" 2. The LaenderspezifischesModellView must contain the following fields: - name: Beschreibung type: STRING - name: Land type: STRING - name: TypischeUnterkunftsArt type: STRING An existing LaenderspezifischesModell entity should be loaded from the relative URL: "/VermittlerService/laenderspezifischesmodell/{id}" (HTTP-GET) If a new LaenderspezifischesModell entity has been created, the new entity should be posted to the relative URL: "/VermittlerService/laenderspezifischesmodell" (HTTP-POST) If an existing LaenderspezifischesModell entity has been updated, the modified entity should be sent to the relative URL: "/VermittlerService/laenderspezifischesmodell/{id}" (HTTP-PUT) If an existing LaenderspezifischesModell entity has to be deleted, the following relative URL should be called: "/VermittlerService/laenderspezifischesmodell/{id}" (HTTP-DELETE) 3. The RechtsbeschraenkungView must contain the following fields: - name: BeschraenkungsTyp type: STRING - name: Beschreibung type: STRING - name: GueltigAb type: DATE - name: GueltigBis type: DATE - name: RechtsQuelle type: STRING - name: Unterkunft type: Unterkunft The data source for the [Unterkunft] select control should be loaded from the relative URL: "/UnterkunftService/unterkunft" (HTTP-GET) An existing Rechtsbeschraenkung entity should be loaded from the relative URL: "/VermittlerService/rechtsbeschraenkung/{id}" (HTTP-GET) If a new Rechtsbeschraenkung entity has been created, the new entity should be posted to the relative URL: "/VermittlerService/rechtsbeschraenkung" (HTTP-POST) If an existing Rechtsbeschraenkung entity has been updated, the modified entity should be sent to the relative URL: "/VermittlerService/rechtsbeschraenkung/{id}" (HTTP-PUT) If an existing Rechtsbeschraenkung entity has to be deleted, the following relative URL should be called: "/VermittlerService/rechtsbeschraenkung/{id}" (HTTP-DELETE) 4. The VermittlerView must contain the following fields: - name: KontaktEmail type: STRING - name: KontaktTelefon type: STRING - name: Name type: STRING - name: Typ type: STRING - name: Webseite type: STRING An existing Vermittler entity should be loaded from the relative URL: "/VermittlerService/vermittler/{id}" (HTTP-GET) If a new Vermittler entity has been created, the new entity should be posted to the relative URL: "/VermittlerService/vermittler" (HTTP-POST) If an existing Vermittler entity has been updated, the modified entity should be sent to the relative URL: "/VermittlerService/vermittler/{id}" (HTTP-PUT) If an existing Vermittler entity has to be deleted, the following relative URL should be called: "/VermittlerService/vermittler/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Buchung columns: - column: BuchungsDatum - column: Status - column: Unterkunft - column: Vermittler - column: Gesamtpreis - column: EndeDatum - column: BeginnDatum - column: Gast The table should have the title "Buchungs" und the data must be loaded from the server with the following relative URL: "/BuchungService/buchung/vermittler/{id}" Add a HTML table to the view with the following VermittlerProvision columns: - column: Vermittler - column: Betrag - column: Einheit - column: Unterkunft - column: ProvisionsTyp The table should have the title "VermittlerProvisions" und the data must be loaded from the server with the following relative URL: "/VermittlerService/vermittlerprovision/vermittler/{id}" Add a HTML table to the view with the following Unterkunft columns: - column: Typ - column: Ferienanlage - column: HatPrivatenEingang - column: Ort - column: Flaeche - column: Eigentuemer - column: Vermittler - column: MaxPersonen - column: Name - column: IstTeilWohngebaeude - column: IstTeilFerienanlage - column: Beschreibung The table should have the title "Unterkunfts" und the data must be loaded from the server with the following relative URL: "/UnterkunftService/unterkunft/vermittler/{id}" 5. The VermittlerProvisionView must contain the following fields: - name: Betrag type: STRING - name: Einheit type: STRING - name: ProvisionsTyp 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) An existing VermittlerProvision entity should be loaded from the relative URL: "/VermittlerService/vermittlerprovision/{id}" (HTTP-GET) If a new VermittlerProvision entity has been created, the new entity should be posted to the relative URL: "/VermittlerService/vermittlerprovision" (HTTP-POST) If an existing VermittlerProvision entity has been updated, the modified entity should be sent to the relative URL: "/VermittlerService/vermittlerprovision/{id}" (HTTP-PUT) If an existing VermittlerProvision entity has to be deleted, the following relative URL should be called: "/VermittlerService/vermittlerprovision/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum