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. BerufsumfangView 2. GesetzView 3. GesetzGiltFuerBerufView 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 BerufsumfangView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing Berufsumfang entity should be loaded from the relative URL: "/GesetzService/berufsumfang/{id}" (HTTP-GET) If a new Berufsumfang entity has been created, the new entity should be posted to the relative URL: "/GesetzService/berufsumfang" (HTTP-POST) If an existing Berufsumfang entity has been updated, the modified entity should be sent to the relative URL: "/GesetzService/berufsumfang/{id}" (HTTP-PUT) If an existing Berufsumfang entity has to be deleted, the following relative URL should be called: "/GesetzService/berufsumfang/{id}" (HTTP-DELETE) Add a HTML table to the view with the following GesetzGiltFuerBeruf columns: - column: Gesetz - column: Berufsumfang The table should have the title "GesetzGiltFuerBerufs" und the data must be loaded from the server with the following relative URL: "/GesetzService/gesetzgiltfuerberuf/berufsumfang/{id}" 2. The GesetzView must contain the following fields: - name: Gesetzestyp type: STRING - name: GueltigAb type: DATE - name: Land type: Land - name: Name type: STRING - name: Zitat 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 GesetzGiltFuerBeruf columns: - column: Gesetz - column: Berufsumfang The table should have the title "GesetzGiltFuerBerufs" und the data must be loaded from the server with the following relative URL: "/GesetzService/gesetzgiltfuerberuf/gesetz/{id}" Add a HTML table to the view with the following GesetzGiltFuerKoerperschaft columns: - column: Gesetz - column: Berufskoerperschaft The table should have the title "GesetzGiltFuerKoerperschafts" und the data must be loaded from the server with the following relative URL: "/BerufskoerperschaftService/gesetzgiltfuerkoerperschaft/gesetz/{id}" 3. The GesetzGiltFuerBerufView must contain the following fields: - name: Berufsumfang type: Berufsumfang - name: Gesetz type: Gesetz The data source for the [Berufsumfang] select control should be loaded from the relative URL: "/GesetzService/berufsumfang" (HTTP-GET) The data source for the [Gesetz] select control should be loaded from the relative URL: "/GesetzService/gesetz" (HTTP-GET) An existing GesetzGiltFuerBeruf entity should be loaded from the relative URL: "/GesetzService/gesetzgiltfuerberuf/{id}" (HTTP-GET) If a new GesetzGiltFuerBeruf entity has been created, the new entity should be posted to the relative URL: "/GesetzService/gesetzgiltfuerberuf" (HTTP-POST) If an existing GesetzGiltFuerBeruf entity has been updated, the modified entity should be sent to the relative URL: "/GesetzService/gesetzgiltfuerberuf/{id}" (HTTP-PUT) If an existing GesetzGiltFuerBeruf entity has to be deleted, the following relative URL should be called: "/GesetzService/gesetzgiltfuerberuf/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum