Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
LandesvarianteApp
Please create a React-JS application for the LandesvarianteModule. The application has to offer the following views for the user interface: 1. LandesvarianteView 2. WohnformLandesvarianteView 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 LandesvarianteView must contain the following fields: - name: Beschreibung type: STRING - name: Land type: STRING - name: Name type: STRING An existing Landesvariante entity should be loaded from the relative URL: "/LandesvarianteService/landesvariante/{id}" (HTTP-GET) If a new Landesvariante entity has been created, the new entity should be posted to the relative URL: "/LandesvarianteService/landesvariante" (HTTP-POST) If an existing Landesvariante entity has been updated, the modified entity should be sent to the relative URL: "/LandesvarianteService/landesvariante/{id}" (HTTP-PUT) If an existing Landesvariante entity has to be deleted, the following relative URL should be called: "/LandesvarianteService/landesvariante/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Bewohner columns: - column: Startdatum - column: Person - column: Enddatum - column: Landesvariante - column: Unterstuetzungsniveau - column: Zielgruppe The table should have the title "Bewohners" und the data must be loaded from the server with the following relative URL: "/BewohnerService/bewohner/landesvariante/{id}" Add a HTML table to the view with the following WohnformLandesvariante columns: - column: Wohnform - column: Landesvariante - column: Notizen The table should have the title "WohnformLandesvariantes" und the data must be loaded from the server with the following relative URL: "/LandesvarianteService/wohnformlandesvariante/landesvariante/{id}" 2. The WohnformLandesvarianteView must contain the following fields: - name: Landesvariante type: Landesvariante - name: Notizen type: STRING - name: Wohnform type: Wohnform The data source for the [Wohnform] select control should be loaded from the relative URL: "/WohnformService/wohnform" (HTTP-GET) The data source for the [Landesvariante] select control should be loaded from the relative URL: "/LandesvarianteService/landesvariante" (HTTP-GET) An existing WohnformLandesvariante entity should be loaded from the relative URL: "/LandesvarianteService/wohnformlandesvariante/{id}" (HTTP-GET) If a new WohnformLandesvariante entity has been created, the new entity should be posted to the relative URL: "/LandesvarianteService/wohnformlandesvariante" (HTTP-POST) If an existing WohnformLandesvariante entity has been updated, the modified entity should be sent to the relative URL: "/LandesvarianteService/wohnformlandesvariante/{id}" (HTTP-PUT) If an existing WohnformLandesvariante entity has to be deleted, the following relative URL should be called: "/LandesvarianteService/wohnformlandesvariante/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum