Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
GesetzApp
Please create a React-JS application for the GesetzModule. The application has to offer the following views for the user interface: 1. ArzneimittelPreisregelView 2. BehoerdeView 3. GesetzView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 3 views are defined below. 1. The ArzneimittelPreisregelView must contain the following fields: - name: Beschreibung type: STRING - name: Gesetz type: Gesetz - name: GueltigAb type: DATE - name: Land type: Land The data source for the [Gesetz] select control should be loaded from the relative URL: "/GesetzService/gesetz" (HTTP-GET) The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing ArzneimittelPreisregel entity should be loaded from the relative URL: "/GesetzService/arzneimittelpreisregel/{id}" (HTTP-GET) If a new ArzneimittelPreisregel entity has been created, the new entity should be posted to the relative URL: "/GesetzService/arzneimittelpreisregel" (HTTP-POST) If an existing ArzneimittelPreisregel entity has been updated, the modified entity should be sent to the relative URL: "/GesetzService/arzneimittelpreisregel/{id}" (HTTP-PUT) If an existing ArzneimittelPreisregel entity has to be deleted, the following relative URL should be called: "/GesetzService/arzneimittelpreisregel/{id}" (HTTP-DELETE) 2. The BehoerdeView must contain the following fields: - name: BehoerdeTyp type: STRING - name: Name type: STRING - name: Region type: Region The data source for the [Region] select control should be loaded from the relative URL: "/LandService/region" (HTTP-GET) An existing Behoerde entity should be loaded from the relative URL: "/GesetzService/behoerde/{id}" (HTTP-GET) If a new Behoerde entity has been created, the new entity should be posted to the relative URL: "/GesetzService/behoerde" (HTTP-POST) If an existing Behoerde entity has been updated, the modified entity should be sent to the relative URL: "/GesetzService/behoerde/{id}" (HTTP-PUT) If an existing Behoerde entity has to be deleted, the following relative URL should be called: "/GesetzService/behoerde/{id}" (HTTP-DELETE) 3. The GesetzView must contain the following fields: - name: Beschreibung type: STRING - name: GesetzTyp type: STRING - name: InkraftDatum type: DATE - name: Kurzbezeichnung type: STRING - name: Land type: Land - name: Titel type: STRING The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Gesetz entity should be loaded from the relative URL: "/GesetzService/gesetz/{id}" (HTTP-GET) If a new Gesetz entity has been created, the new entity should be posted to the relative URL: "/GesetzService/gesetz" (HTTP-POST) If an existing Gesetz entity has been updated, the modified entity should be sent to the relative URL: "/GesetzService/gesetz/{id}" (HTTP-PUT) If an existing Gesetz entity has to be deleted, the following relative URL should be called: "/GesetzService/gesetz/{id}" (HTTP-DELETE) Add a HTML table to the view with the following GerichtsurteilGesetz columns: - column: Gerichtsurteil - column: Gesetz - column: BezugTyp The table should have the title "GerichtsurteilGesetzs" und the data must be loaded from the server with the following relative URL: "/GerichtsurteilService/gerichtsurteilgesetz/gesetz/{id}" Add a HTML table to the view with the following SelbstdispensationRegelung columns: - column: Land - column: Beschreibung - column: Region - column: Gesetz The table should have the title "SelbstdispensationRegelungs" und the data must be loaded from the server with the following relative URL: "/LandService/selbstdispensationregelung/gesetz/{id}" Add a HTML table to the view with the following ArzneimittelPreisregel columns: - column: Land - column: Gesetz - column: Beschreibung - column: GueltigAb The table should have the title "ArzneimittelPreisregels" und the data must be loaded from the server with the following relative URL: "/GesetzService/arzneimittelpreisregel/gesetz/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum