Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
RechtsgebietApp
Please create a React-JS application for the RechtsgebietModule. The application has to offer the following views for the user interface: 1. RechtsgebietView 2. VerfahrensartRechtsgebietView 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 RechtsgebietView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing Rechtsgebiet entity should be loaded from the relative URL: "/RechtsgebietService/rechtsgebiet/{id}" (HTTP-GET) If a new Rechtsgebiet entity has been created, the new entity should be posted to the relative URL: "/RechtsgebietService/rechtsgebiet" (HTTP-POST) If an existing Rechtsgebiet entity has been updated, the modified entity should be sent to the relative URL: "/RechtsgebietService/rechtsgebiet/{id}" (HTTP-PUT) If an existing Rechtsgebiet entity has to be deleted, the following relative URL should be called: "/RechtsgebietService/rechtsgebiet/{id}" (HTTP-DELETE) Add a HTML table to the view with the following VerfahrensartRechtsgebiet columns: - column: Verfahrensart - column: Rechtsgebiet The table should have the title "VerfahrensartRechtsgebiets" und the data must be loaded from the server with the following relative URL: "/RechtsgebietService/verfahrensartrechtsgebiet/rechtsgebiet/{id}" 2. The VerfahrensartRechtsgebietView must contain the following fields: - name: Rechtsgebiet type: Rechtsgebiet - name: Verfahrensart type: Verfahrensart The data source for the [Verfahrensart] select control should be loaded from the relative URL: "/VerfahrenService/verfahrensart" (HTTP-GET) The data source for the [Rechtsgebiet] select control should be loaded from the relative URL: "/RechtsgebietService/rechtsgebiet" (HTTP-GET) An existing VerfahrensartRechtsgebiet entity should be loaded from the relative URL: "/RechtsgebietService/verfahrensartrechtsgebiet/{id}" (HTTP-GET) If a new VerfahrensartRechtsgebiet entity has been created, the new entity should be posted to the relative URL: "/RechtsgebietService/verfahrensartrechtsgebiet" (HTTP-POST) If an existing VerfahrensartRechtsgebiet entity has been updated, the modified entity should be sent to the relative URL: "/RechtsgebietService/verfahrensartrechtsgebiet/{id}" (HTTP-PUT) If an existing VerfahrensartRechtsgebiet entity has to be deleted, the following relative URL should be called: "/RechtsgebietService/verfahrensartrechtsgebiet/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum