Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
EigentuemerApp
Please create a React-JS application for the EigentuemerModule. The application has to offer the following views for the user interface: 1. BrueckenEigentumView 2. EigentuemerView 3. EigentumsartView 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 BrueckenEigentumView must contain the following fields: - name: AnteilProzent type: STRING - name: Bruecke type: Bruecke - name: Eigentuemer type: Eigentuemer - name: Eigentumsart type: Eigentumsart The data source for the [Eigentuemer] select control should be loaded from the relative URL: "/EigentuemerService/eigentuemer" (HTTP-GET) The data source for the [Eigentumsart] select control should be loaded from the relative URL: "/EigentuemerService/eigentumsart" (HTTP-GET) The data source for the [Bruecke] select control should be loaded from the relative URL: "/BrueckeService/bruecke" (HTTP-GET) An existing BrueckenEigentum entity should be loaded from the relative URL: "/EigentuemerService/brueckeneigentum/{id}" (HTTP-GET) If a new BrueckenEigentum entity has been created, the new entity should be posted to the relative URL: "/EigentuemerService/brueckeneigentum" (HTTP-POST) If an existing BrueckenEigentum entity has been updated, the modified entity should be sent to the relative URL: "/EigentuemerService/brueckeneigentum/{id}" (HTTP-PUT) If an existing BrueckenEigentum entity has to be deleted, the following relative URL should be called: "/EigentuemerService/brueckeneigentum/{id}" (HTTP-DELETE) 2. The EigentuemerView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing Eigentuemer entity should be loaded from the relative URL: "/EigentuemerService/eigentuemer/{id}" (HTTP-GET) If a new Eigentuemer entity has been created, the new entity should be posted to the relative URL: "/EigentuemerService/eigentuemer" (HTTP-POST) If an existing Eigentuemer entity has been updated, the modified entity should be sent to the relative URL: "/EigentuemerService/eigentuemer/{id}" (HTTP-PUT) If an existing Eigentuemer entity has to be deleted, the following relative URL should be called: "/EigentuemerService/eigentuemer/{id}" (HTTP-DELETE) Add a HTML table to the view with the following BrueckenEigentum columns: - column: Bruecke - column: Eigentuemer - column: AnteilProzent - column: Eigentumsart The table should have the title "BrueckenEigentums" und the data must be loaded from the server with the following relative URL: "/EigentuemerService/brueckeneigentum/eigentuemer/{id}" 3. The EigentumsartView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing Eigentumsart entity should be loaded from the relative URL: "/EigentuemerService/eigentumsart/{id}" (HTTP-GET) If a new Eigentumsart entity has been created, the new entity should be posted to the relative URL: "/EigentuemerService/eigentumsart" (HTTP-POST) If an existing Eigentumsart entity has been updated, the modified entity should be sent to the relative URL: "/EigentuemerService/eigentumsart/{id}" (HTTP-PUT) If an existing Eigentumsart entity has to be deleted, the following relative URL should be called: "/EigentuemerService/eigentumsart/{id}" (HTTP-DELETE) Add a HTML table to the view with the following BrueckenEigentum columns: - column: Bruecke - column: Eigentuemer - column: AnteilProzent - column: Eigentumsart The table should have the title "BrueckenEigentums" und the data must be loaded from the server with the following relative URL: "/EigentuemerService/brueckeneigentum/eigentumsart/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum