Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
BundesverbandApp
Please create a React-JS application for the BundesverbandModule. The application has to offer the following views for the user interface: 1. BundesverbandView 2. LandesverbandView 3. MedienberichtView 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 BundesverbandView must contain the following fields: - name: Gruendungsdatum type: DATE - name: Name type: STRING - name: Sitz type: STRING - name: VereinsregisterNummer type: STRING An existing Bundesverband entity should be loaded from the relative URL: "/BundesverbandService/bundesverband/{id}" (HTTP-GET) If a new Bundesverband entity has been created, the new entity should be posted to the relative URL: "/BundesverbandService/bundesverband" (HTTP-POST) If an existing Bundesverband entity has been updated, the modified entity should be sent to the relative URL: "/BundesverbandService/bundesverband/{id}" (HTTP-PUT) If an existing Bundesverband entity has to be deleted, the following relative URL should be called: "/BundesverbandService/bundesverband/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Medienbericht columns: - column: Url - column: Medium - column: Datum - column: BerichtTyp - column: LokaleTafel - column: Titel - column: Bundesverband The table should have the title "Medienberichts" und the data must be loaded from the server with the following relative URL: "/BundesverbandService/medienbericht/bundesverband/{id}" Add a HTML table to the view with the following Kooperationsvereinbarung columns: - column: Notizen - column: PartnerOrganisation - column: VereinbarungsTyp - column: SpenderOrganisation - column: LokaleTafel - column: Bundesverband - column: Titel - column: BisDatum - column: VonDatum The table should have the title "Kooperationsvereinbarungs" und the data must be loaded from the server with the following relative URL: "/AdresseService/kooperationsvereinbarung/bundesverband/{id}" Add a HTML table to the view with the following Bericht columns: - column: Url - column: LokaleTafel - column: Jahr - column: BerichtTyp - column: Bundesverband - column: VeroeffentlichtAm The table should have the title "Berichts" und the data must be loaded from the server with the following relative URL: "/LokaleTafelService/bericht/bundesverband/{id}" Add a HTML table to the view with the following Landesverband columns: - column: Gruendungsdatum - column: Bundesverband - column: Name - column: Bundesland The table should have the title "Landesverbands" und the data must be loaded from the server with the following relative URL: "/BundesverbandService/landesverband/bundesverband/{id}" Add a HTML table to the view with the following Programm columns: - column: Bundesverband - column: BisDatum - column: Beschreibung - column: VonDatum - column: ProgrammTyp - column: Name The table should have the title "Programms" und the data must be loaded from the server with the following relative URL: "/ProgrammService/programm/bundesverband/{id}" Add a HTML table to the view with the following LokaleTafel columns: - column: VereinsregisterNummer - column: Traegerverein - column: Name - column: AktivFlag - column: Bundesverband - column: Gruendungsdatum - column: Landesverband The table should have the title "LokaleTafels" und the data must be loaded from the server with the following relative URL: "/LokaleTafelService/lokaletafel/bundesverband/{id}" Add a HTML table to the view with the following Vorstandsmitglied columns: - column: Nachname - column: Traegerverein - column: Vorname - column: Landesverband - column: Bundesverband - column: Amtsbeginn - column: Funktion - column: Amtsende The table should have the title "Vorstandsmitglieds" und the data must be loaded from the server with the following relative URL: "/TraegervereinService/vorstandsmitglied/bundesverband/{id}" 2. The LandesverbandView must contain the following fields: - name: Bundesland type: STRING - name: Bundesverband type: Bundesverband - name: Gruendungsdatum type: DATE - name: Name type: STRING The data source for the [Bundesverband] select control should be loaded from the relative URL: "/BundesverbandService/bundesverband" (HTTP-GET) An existing Landesverband entity should be loaded from the relative URL: "/BundesverbandService/landesverband/{id}" (HTTP-GET) If a new Landesverband entity has been created, the new entity should be posted to the relative URL: "/BundesverbandService/landesverband" (HTTP-POST) If an existing Landesverband entity has been updated, the modified entity should be sent to the relative URL: "/BundesverbandService/landesverband/{id}" (HTTP-PUT) If an existing Landesverband entity has to be deleted, the following relative URL should be called: "/BundesverbandService/landesverband/{id}" (HTTP-DELETE) Add a HTML table to the view with the following LokaleTafel columns: - column: VereinsregisterNummer - column: Traegerverein - column: Name - column: AktivFlag - column: Bundesverband - column: Gruendungsdatum - column: Landesverband The table should have the title "LokaleTafels" und the data must be loaded from the server with the following relative URL: "/LokaleTafelService/lokaletafel/landesverband/{id}" Add a HTML table to the view with the following Vorstandsmitglied columns: - column: Nachname - column: Traegerverein - column: Vorname - column: Landesverband - column: Bundesverband - column: Amtsbeginn - column: Funktion - column: Amtsende The table should have the title "Vorstandsmitglieds" und the data must be loaded from the server with the following relative URL: "/TraegervereinService/vorstandsmitglied/landesverband/{id}" 3. The MedienberichtView must contain the following fields: - name: BerichtTyp type: STRING - name: Bundesverband type: Bundesverband - name: Datum type: DATE - name: LokaleTafel type: LokaleTafel - name: Medium type: STRING - name: Titel type: STRING - name: Url type: STRING The data source for the [Bundesverband] select control should be loaded from the relative URL: "/BundesverbandService/bundesverband" (HTTP-GET) The data source for the [LokaleTafel] select control should be loaded from the relative URL: "/LokaleTafelService/lokaletafel" (HTTP-GET) An existing Medienbericht entity should be loaded from the relative URL: "/BundesverbandService/medienbericht/{id}" (HTTP-GET) If a new Medienbericht entity has been created, the new entity should be posted to the relative URL: "/BundesverbandService/medienbericht" (HTTP-POST) If an existing Medienbericht entity has been updated, the modified entity should be sent to the relative URL: "/BundesverbandService/medienbericht/{id}" (HTTP-PUT) If an existing Medienbericht entity has to be deleted, the following relative URL should be called: "/BundesverbandService/medienbericht/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum