Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
BehoerdeApp
Please create a React-JS application for the BehoerdeModule. The application has to offer the following views for the user interface: 1. BehoerdeView 2. BehoerdenartView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 2 views are defined below. 1. The BehoerdeView must contain the following fields: - name: Behoerdenart type: Behoerdenart - name: Beschreibung type: STRING - name: Land type: Land - name: Name type: STRING The data source for the [Behoerdenart] select control should be loaded from the relative URL: "/BehoerdeService/behoerdenart" (HTTP-GET) The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Behoerde entity should be loaded from the relative URL: "/BehoerdeService/behoerde/{id}" (HTTP-GET) If a new Behoerde entity has been created, the new entity should be posted to the relative URL: "/BehoerdeService/behoerde" (HTTP-POST) If an existing Behoerde entity has been updated, the modified entity should be sent to the relative URL: "/BehoerdeService/behoerde/{id}" (HTTP-PUT) If an existing Behoerde entity has to be deleted, the following relative URL should be called: "/BehoerdeService/behoerde/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Erlaubnis columns: - column: Ausstellungsdatum - column: Erlaubnistyp - column: Land - column: Ablaufdatum - column: Gesetz - column: Hinweise - column: Behoerde - column: Person - column: Widerrufsdatum - column: IstWiderrufen - column: Beruf - column: Sektoralerlaubnisart - column: Erlaubnisnummer The table should have the title "Erlaubniss" und the data must be loaded from the server with the following relative URL: "/LandService/erlaubnis/behoerde/{id}" Add a HTML table to the view with the following Pruefung columns: - column: MuendlichErforderlich - column: Name - column: MaxVersuche - column: SchriftlichErforderlich - column: Land - column: Behoerde - column: Beschreibung - column: Beruf - column: Mindestpunktzahl - column: Gesetz The table should have the title "Pruefungs" und the data must be loaded from the server with the following relative URL: "/PruefungService/pruefung/behoerde/{id}" 2. The BehoerdenartView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing Behoerdenart entity should be loaded from the relative URL: "/BehoerdeService/behoerdenart/{id}" (HTTP-GET) If a new Behoerdenart entity has been created, the new entity should be posted to the relative URL: "/BehoerdeService/behoerdenart" (HTTP-POST) If an existing Behoerdenart entity has been updated, the modified entity should be sent to the relative URL: "/BehoerdeService/behoerdenart/{id}" (HTTP-PUT) If an existing Behoerdenart entity has to be deleted, the following relative URL should be called: "/BehoerdeService/behoerdenart/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Behoerde columns: - column: Name - column: Behoerdenart - column: Beschreibung - column: Land The table should have the title "Behoerdes" und the data must be loaded from the server with the following relative URL: "/BehoerdeService/behoerde/behoerdenart/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum