Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
KammerApp
Please create a React-JS application for the KammerModule. The application has to offer the following views for the user interface: 1. GenehmigungView 2. KammerView 3. PraxisformView 4. RechtsgrundlageView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 4 views are defined below. 1. The GenehmigungView must contain the following fields: - name: Behoerde type: STRING - name: Datum type: DATE - name: Land type: STRING - name: Notizen type: STRING - name: Nummer type: STRING An existing Genehmigung entity should be loaded from the relative URL: "/KammerService/genehmigung/{id}" (HTTP-GET) If a new Genehmigung entity has been created, the new entity should be posted to the relative URL: "/KammerService/genehmigung" (HTTP-POST) If an existing Genehmigung entity has been updated, the modified entity should be sent to the relative URL: "/KammerService/genehmigung/{id}" (HTTP-PUT) If an existing Genehmigung entity has to be deleted, the following relative URL should be called: "/KammerService/genehmigung/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Tierarzt columns: - column: Nachname - column: Geschlecht - column: Notizen - column: Aktiv - column: Genehmigung - column: Vorname - column: Geburtsdatum - column: Kammer The table should have the title "Tierarzts" und the data must be loaded from the server with the following relative URL: "/TierarztpraxisService/tierarzt/genehmigung/{id}" 2. The KammerView must contain the following fields: - name: Bundesland type: STRING - name: Email type: STRING - name: Land type: STRING - name: Name type: STRING - name: Ort type: STRING - name: Postleitzahl type: STRING - name: Rechtsgrundlage type: Rechtsgrundlage - name: Strasse type: STRING - name: Telefon type: STRING - name: Webseite type: STRING The data source for the [Rechtsgrundlage] select control should be loaded from the relative URL: "/KammerService/rechtsgrundlage" (HTTP-GET) An existing Kammer entity should be loaded from the relative URL: "/KammerService/kammer/{id}" (HTTP-GET) If a new Kammer entity has been created, the new entity should be posted to the relative URL: "/KammerService/kammer" (HTTP-POST) If an existing Kammer entity has been updated, the modified entity should be sent to the relative URL: "/KammerService/kammer/{id}" (HTTP-PUT) If an existing Kammer entity has to be deleted, the following relative URL should be called: "/KammerService/kammer/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Tierarztpraxis columns: - column: Enddatum - column: Strasse - column: Praxisart - column: Ort - column: Staatlich - column: Mobil - column: Land - column: Name - column: Notizen - column: Verwaltungsregion - column: Kammer - column: HatHausapotheke - column: Startdatum - column: Praxisform - column: Postleitzahl - column: Klinik The table should have the title "Tierarztpraxiss" und the data must be loaded from the server with the following relative URL: "/TierarztpraxisService/tierarztpraxis/kammer/{id}" Add a HTML table to the view with the following Tierarzt columns: - column: Nachname - column: Geschlecht - column: Notizen - column: Aktiv - column: Genehmigung - column: Vorname - column: Geburtsdatum - column: Kammer The table should have the title "Tierarzts" und the data must be loaded from the server with the following relative URL: "/TierarztpraxisService/tierarzt/kammer/{id}" 3. The PraxisformView must contain the following fields: - name: Beschreibung type: STRING - name: Code type: STRING - name: Name type: STRING An existing Praxisform entity should be loaded from the relative URL: "/KammerService/praxisform/{id}" (HTTP-GET) If a new Praxisform entity has been created, the new entity should be posted to the relative URL: "/KammerService/praxisform" (HTTP-POST) If an existing Praxisform entity has been updated, the modified entity should be sent to the relative URL: "/KammerService/praxisform/{id}" (HTTP-PUT) If an existing Praxisform entity has to be deleted, the following relative URL should be called: "/KammerService/praxisform/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Tierarztpraxis columns: - column: Enddatum - column: Strasse - column: Praxisart - column: Ort - column: Staatlich - column: Mobil - column: Land - column: Name - column: Notizen - column: Verwaltungsregion - column: Kammer - column: HatHausapotheke - column: Startdatum - column: Praxisform - column: Postleitzahl - column: Klinik The table should have the title "Tierarztpraxiss" und the data must be loaded from the server with the following relative URL: "/TierarztpraxisService/tierarztpraxis/praxisform/{id}" 4. The RechtsgrundlageView must contain the following fields: - name: Bundesland type: STRING - name: Gesetzesreferenz type: STRING - name: GueltigAb type: DATE - name: GueltigBis type: DATE - name: Name type: STRING - name: Notizen type: STRING An existing Rechtsgrundlage entity should be loaded from the relative URL: "/KammerService/rechtsgrundlage/{id}" (HTTP-GET) If a new Rechtsgrundlage entity has been created, the new entity should be posted to the relative URL: "/KammerService/rechtsgrundlage" (HTTP-POST) If an existing Rechtsgrundlage entity has been updated, the modified entity should be sent to the relative URL: "/KammerService/rechtsgrundlage/{id}" (HTTP-PUT) If an existing Rechtsgrundlage entity has to be deleted, the following relative URL should be called: "/KammerService/rechtsgrundlage/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Kammer columns: - column: Name - column: Bundesland - column: Telefon - column: Rechtsgrundlage - column: Land - column: Postleitzahl - column: Strasse - column: Webseite - column: Ort - column: Email The table should have the title "Kammers" und the data must be loaded from the server with the following relative URL: "/KammerService/kammer/rechtsgrundlage/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum