Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
BundeslandApp
Please create a React-JS application for the BundeslandModule. The application has to offer the following views for the user interface: 1. AufsichtsbehoerdeView 2. BundeslandView 3. PflegekassenverbandView 4. PruefungView 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 AufsichtsbehoerdeView must contain the following fields: - name: Behoerdenart type: STRING - name: Bundesland type: Bundesland - name: Name type: STRING The data source for the [Bundesland] select control should be loaded from the relative URL: "/BundeslandService/bundesland" (HTTP-GET) An existing Aufsichtsbehoerde entity should be loaded from the relative URL: "/BundeslandService/aufsichtsbehoerde/{id}" (HTTP-GET) If a new Aufsichtsbehoerde entity has been created, the new entity should be posted to the relative URL: "/BundeslandService/aufsichtsbehoerde" (HTTP-POST) If an existing Aufsichtsbehoerde entity has been updated, the modified entity should be sent to the relative URL: "/BundeslandService/aufsichtsbehoerde/{id}" (HTTP-PUT) If an existing Aufsichtsbehoerde entity has to be deleted, the following relative URL should be called: "/BundeslandService/aufsichtsbehoerde/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Pruefung columns: - column: Pruefart - column: ErgebnisKurz - column: Pruefdatum - column: Pflegeheim - column: Aufsichtsbehoerde - column: BerichtHinweis The table should have the title "Pruefungs" und the data must be loaded from the server with the following relative URL: "/BundeslandService/pruefung/aufsichtsbehoerde/{id}" 2. The BundeslandView must contain the following fields: - name: Kuerzel type: STRING - name: Name type: STRING An existing Bundesland entity should be loaded from the relative URL: "/BundeslandService/bundesland/{id}" (HTTP-GET) If a new Bundesland entity has been created, the new entity should be posted to the relative URL: "/BundeslandService/bundesland" (HTTP-POST) If an existing Bundesland entity has been updated, the modified entity should be sent to the relative URL: "/BundeslandService/bundesland/{id}" (HTTP-PUT) If an existing Bundesland entity has to be deleted, the following relative URL should be called: "/BundeslandService/bundesland/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Aufsichtsbehoerde columns: - column: Name - column: Bundesland - column: Behoerdenart The table should have the title "Aufsichtsbehoerdes" und the data must be loaded from the server with the following relative URL: "/BundeslandService/aufsichtsbehoerde/bundesland/{id}" Add a HTML table to the view with the following Pflegeheim columns: - column: Strasse - column: TagespflegePlaetze - column: Pflegeheimkette - column: Name - column: Plz - column: Bundesland - column: NachtpflegePlaetze - column: Traeger - column: KurzzeitpflegePlaetze - column: Heimart - column: ZugelassenDurchPflegeversicherung - column: Aktiv - column: Pflegeschwerpunkt - column: Ort - column: VollstationaerePlaetze The table should have the title "Pflegeheims" und the data must be loaded from the server with the following relative URL: "/PflegeheimService/pflegeheim/bundesland/{id}" Add a HTML table to the view with the following Sozialhilfetraeger columns: - column: Bundesland - column: Name - column: Traegerart The table should have the title "Sozialhilfetraegers" und the data must be loaded from the server with the following relative URL: "/TraegerService/sozialhilfetraeger/bundesland/{id}" Add a HTML table to the view with the following Pflegekasse columns: - column: Name - column: Kassenart - column: Bundesland The table should have the title "Pflegekasses" und the data must be loaded from the server with the following relative URL: "/BewohnerService/pflegekasse/bundesland/{id}" Add a HTML table to the view with the following Personalschluessel columns: - column: Bundesland - column: GueltigBis - column: Pflegegrad - column: VerhaeltnisBewohnerProKraft - column: Pflegeheim - column: Personalart - column: GueltigAb The table should have the title "Personalschluessels" und the data must be loaded from the server with the following relative URL: "/PflegeheimService/personalschluessel/bundesland/{id}" 3. The PflegekassenverbandView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing Pflegekassenverband entity should be loaded from the relative URL: "/BundeslandService/pflegekassenverband/{id}" (HTTP-GET) If a new Pflegekassenverband entity has been created, the new entity should be posted to the relative URL: "/BundeslandService/pflegekassenverband" (HTTP-POST) If an existing Pflegekassenverband entity has been updated, the modified entity should be sent to the relative URL: "/BundeslandService/pflegekassenverband/{id}" (HTTP-PUT) If an existing Pflegekassenverband entity has to be deleted, the following relative URL should be called: "/BundeslandService/pflegekassenverband/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Versorgungsvertrag columns: - column: Pflegekassenverband - column: Versorgungsart - column: Vertragsbeginn - column: Vertragsende - column: Zugelassen - column: Pflegeheim The table should have the title "Versorgungsvertrags" und the data must be loaded from the server with the following relative URL: "/PflegegradService/versorgungsvertrag/pflegekassenverband/{id}" 4. The PruefungView must contain the following fields: - name: Aufsichtsbehoerde type: Aufsichtsbehoerde - name: BerichtHinweis type: STRING - name: ErgebnisKurz type: STRING - name: Pflegeheim type: Pflegeheim - name: Pruefart type: STRING - name: Pruefdatum type: DATE The data source for the [Aufsichtsbehoerde] select control should be loaded from the relative URL: "/BundeslandService/aufsichtsbehoerde" (HTTP-GET) The data source for the [Pflegeheim] select control should be loaded from the relative URL: "/PflegeheimService/pflegeheim" (HTTP-GET) An existing Pruefung entity should be loaded from the relative URL: "/BundeslandService/pruefung/{id}" (HTTP-GET) If a new Pruefung entity has been created, the new entity should be posted to the relative URL: "/BundeslandService/pruefung" (HTTP-POST) If an existing Pruefung entity has been updated, the modified entity should be sent to the relative URL: "/BundeslandService/pruefung/{id}" (HTTP-PUT) If an existing Pruefung entity has to be deleted, the following relative URL should be called: "/BundeslandService/pruefung/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum