Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
BetreuungsbehoerdeApp
Please create a React-JS application for the BetreuungsbehoerdeModule. The application has to offer the following views for the user interface: 1. BetreuerSchulungView 2. BetreuungsbehoerdeView 3. BetreuungsvereinView 4. SchulungView 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 BetreuerSchulungView must contain the following fields: - name: AbschlussDatum type: DATE - name: Betreuer type: Betreuer - name: Notizen type: STRING - name: Schulung type: Schulung - name: Zertifikat type: BOOL - name: ZertifikatNummer type: STRING The data source for the [Betreuer] select control should be loaded from the relative URL: "/BetreuerService/betreuer" (HTTP-GET) The data source for the [Schulung] select control should be loaded from the relative URL: "/BetreuungsbehoerdeService/schulung" (HTTP-GET) An existing BetreuerSchulung entity should be loaded from the relative URL: "/BetreuungsbehoerdeService/betreuerschulung/{id}" (HTTP-GET) If a new BetreuerSchulung entity has been created, the new entity should be posted to the relative URL: "/BetreuungsbehoerdeService/betreuerschulung" (HTTP-POST) If an existing BetreuerSchulung entity has been updated, the modified entity should be sent to the relative URL: "/BetreuungsbehoerdeService/betreuerschulung/{id}" (HTTP-PUT) If an existing BetreuerSchulung entity has to be deleted, the following relative URL should be called: "/BetreuungsbehoerdeService/betreuerschulung/{id}" (HTTP-DELETE) 2. The BetreuungsbehoerdeView must contain the following fields: - name: AdresseLand type: STRING - name: AdresseOrt type: STRING - name: AdressePlz type: STRING - name: AdresseStrasse type: STRING - name: Bundesland type: STRING - name: Email type: STRING - name: Gemeinde type: STRING - name: Name type: STRING - name: Telefonnummer type: STRING An existing Betreuungsbehoerde entity should be loaded from the relative URL: "/BetreuungsbehoerdeService/betreuungsbehoerde/{id}" (HTTP-GET) If a new Betreuungsbehoerde entity has been created, the new entity should be posted to the relative URL: "/BetreuungsbehoerdeService/betreuungsbehoerde" (HTTP-POST) If an existing Betreuungsbehoerde entity has been updated, the modified entity should be sent to the relative URL: "/BetreuungsbehoerdeService/betreuungsbehoerde/{id}" (HTTP-PUT) If an existing Betreuungsbehoerde entity has to be deleted, the following relative URL should be called: "/BetreuungsbehoerdeService/betreuungsbehoerde/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Antrag columns: - column: Betreuung - column: EingereichtVonBetreuter - column: EingereichtVonPerson - column: Notizen - column: AntragArt - column: EingereichtVonBehoerde - column: EingereichtVonBetreuer - column: Gericht - column: Status - column: Eingangsdatum The table should have the title "Antrags" und the data must be loaded from the server with the following relative URL: "/BetreuterService/antrag/eingereichtvonbehoerde/{id}" Add a HTML table to the view with the following Betreuung columns: - column: Beendigungsgrund - column: Betreuter - column: Betreuer - column: AufgabenBeschreibung - column: EndeDatum - column: Betreuungsgericht - column: Betreuungsbehoerde - column: BeginnDatum - column: IstEhrenamtlich - column: IstUmfassend - column: AngelegtAm - column: Notizen The table should have the title "Betreuungs" und the data must be loaded from the server with the following relative URL: "/BetreuungService/betreuung/betreuungsbehoerde/{id}" Add a HTML table to the view with the following Schulung columns: - column: DauerStunden - column: Beschreibung - column: Betreuungsverein - column: IstPflicht - column: Rechtsgrundlage - column: Betreuungsbehoerde - column: Titel - column: AnbieterArt The table should have the title "Schulungs" und the data must be loaded from the server with the following relative URL: "/BetreuungsbehoerdeService/schulung/betreuungsbehoerde/{id}" 3. The BetreuungsvereinView must contain the following fields: - name: AdresseLand type: STRING - name: AdresseOrt type: STRING - name: AdressePlz type: STRING - name: AdresseStrasse type: STRING - name: Anerkennungsdatum type: DATE - name: Email type: STRING - name: IstKirchlich type: BOOL - name: IstWohlfahrtsverband type: BOOL - name: Name type: STRING - name: Telefonnummer type: STRING - name: Traeger type: STRING An existing Betreuungsverein entity should be loaded from the relative URL: "/BetreuungsbehoerdeService/betreuungsverein/{id}" (HTTP-GET) If a new Betreuungsverein entity has been created, the new entity should be posted to the relative URL: "/BetreuungsbehoerdeService/betreuungsverein" (HTTP-POST) If an existing Betreuungsverein entity has been updated, the modified entity should be sent to the relative URL: "/BetreuungsbehoerdeService/betreuungsverein/{id}" (HTTP-PUT) If an existing Betreuungsverein entity has to be deleted, the following relative URL should be called: "/BetreuungsbehoerdeService/betreuungsverein/{id}" (HTTP-DELETE) Add a HTML table to the view with the following BetreuerVereinMitgliedschaft columns: - column: VonDatum - column: BisDatum - column: Rolle - column: Betreuungsverein - column: Betreuer - column: Notizen The table should have the title "BetreuerVereinMitgliedschafts" und the data must be loaded from the server with the following relative URL: "/BetreuerService/betreuervereinmitgliedschaft/betreuungsverein/{id}" Add a HTML table to the view with the following Schulung columns: - column: DauerStunden - column: Beschreibung - column: Betreuungsverein - column: IstPflicht - column: Rechtsgrundlage - column: Betreuungsbehoerde - column: Titel - column: AnbieterArt The table should have the title "Schulungs" und the data must be loaded from the server with the following relative URL: "/BetreuungsbehoerdeService/schulung/betreuungsverein/{id}" 4. The SchulungView must contain the following fields: - name: AnbieterArt type: STRING - name: Beschreibung type: STRING - name: Betreuungsbehoerde type: Betreuungsbehoerde - name: Betreuungsverein type: Betreuungsverein - name: DauerStunden type: DOUBLE - name: IstPflicht type: BOOL - name: Rechtsgrundlage type: Rechtsgrundlage - name: Titel type: STRING The data source for the [Rechtsgrundlage] select control should be loaded from the relative URL: "/BetreuerService/rechtsgrundlage" (HTTP-GET) The data source for the [Betreuungsbehoerde] select control should be loaded from the relative URL: "/BetreuungsbehoerdeService/betreuungsbehoerde" (HTTP-GET) The data source for the [Betreuungsverein] select control should be loaded from the relative URL: "/BetreuungsbehoerdeService/betreuungsverein" (HTTP-GET) An existing Schulung entity should be loaded from the relative URL: "/BetreuungsbehoerdeService/schulung/{id}" (HTTP-GET) If a new Schulung entity has been created, the new entity should be posted to the relative URL: "/BetreuungsbehoerdeService/schulung" (HTTP-POST) If an existing Schulung entity has been updated, the modified entity should be sent to the relative URL: "/BetreuungsbehoerdeService/schulung/{id}" (HTTP-PUT) If an existing Schulung entity has to be deleted, the following relative URL should be called: "/BetreuungsbehoerdeService/schulung/{id}" (HTTP-DELETE) Add a HTML table to the view with the following BetreuerSchulung columns: - column: ZertifikatNummer - column: Betreuer - column: Notizen - column: AbschlussDatum - column: Schulung - column: Zertifikat The table should have the title "BetreuerSchulungs" und the data must be loaded from the server with the following relative URL: "/BetreuungsbehoerdeService/betreuerschulung/schulung/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum