Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
TraegervereinApp
Please create a React-JS application for the TraegervereinModule. The application has to offer the following views for the user interface: 1. FoerderungView 2. RechtsformView 3. TraegervereinView 4. VorstandsmitgliedView 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 FoerderungView must contain the following fields: - name: Betrag type: STRING - name: BewilligtAm type: DATE - name: ErhaltenAm type: DATE - name: FoerderTyp type: STRING - name: LokaleTafel type: LokaleTafel - name: QuelleName type: STRING - name: Traegerverein type: Traegerverein - name: Zweckbeschreibung type: STRING The data source for the [Traegerverein] select control should be loaded from the relative URL: "/TraegervereinService/traegerverein" (HTTP-GET) The data source for the [LokaleTafel] select control should be loaded from the relative URL: "/LokaleTafelService/lokaletafel" (HTTP-GET) An existing Foerderung entity should be loaded from the relative URL: "/TraegervereinService/foerderung/{id}" (HTTP-GET) If a new Foerderung entity has been created, the new entity should be posted to the relative URL: "/TraegervereinService/foerderung" (HTTP-POST) If an existing Foerderung entity has been updated, the modified entity should be sent to the relative URL: "/TraegervereinService/foerderung/{id}" (HTTP-PUT) If an existing Foerderung entity has to be deleted, the following relative URL should be called: "/TraegervereinService/foerderung/{id}" (HTTP-DELETE) 2. The RechtsformView must contain the following fields: - name: Beschreibung type: STRING - name: Bezeichnung type: STRING An existing Rechtsform entity should be loaded from the relative URL: "/TraegervereinService/rechtsform/{id}" (HTTP-GET) If a new Rechtsform entity has been created, the new entity should be posted to the relative URL: "/TraegervereinService/rechtsform" (HTTP-POST) If an existing Rechtsform entity has been updated, the modified entity should be sent to the relative URL: "/TraegervereinService/rechtsform/{id}" (HTTP-PUT) If an existing Rechtsform entity has to be deleted, the following relative URL should be called: "/TraegervereinService/rechtsform/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Traegerverein columns: - column: Rechtsform - column: Name - column: Steuernummer - column: VereinsregisterNummer The table should have the title "Traegervereins" und the data must be loaded from the server with the following relative URL: "/TraegervereinService/traegerverein/rechtsform/{id}" 3. The TraegervereinView must contain the following fields: - name: Name type: STRING - name: Rechtsform type: Rechtsform - name: Steuernummer type: STRING - name: VereinsregisterNummer type: STRING The data source for the [Rechtsform] select control should be loaded from the relative URL: "/TraegervereinService/rechtsform" (HTTP-GET) An existing Traegerverein entity should be loaded from the relative URL: "/TraegervereinService/traegerverein/{id}" (HTTP-GET) If a new Traegerverein entity has been created, the new entity should be posted to the relative URL: "/TraegervereinService/traegerverein" (HTTP-POST) If an existing Traegerverein entity has been updated, the modified entity should be sent to the relative URL: "/TraegervereinService/traegerverein/{id}" (HTTP-PUT) If an existing Traegerverein entity has to be deleted, the following relative URL should be called: "/TraegervereinService/traegerverein/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Foerderung columns: - column: BewilligtAm - column: Zweckbeschreibung - column: QuelleName - column: LokaleTafel - column: ErhaltenAm - column: FoerderTyp - column: Betrag - column: Traegerverein The table should have the title "Foerderungs" und the data must be loaded from the server with the following relative URL: "/TraegervereinService/foerderung/traegerverein/{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/traegerverein/{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/traegerverein/{id}" 4. The VorstandsmitgliedView must contain the following fields: - name: Amtsbeginn type: DATE - name: Amtsende type: DATE - name: Bundesverband type: Bundesverband - name: Funktion type: STRING - name: Landesverband type: Landesverband - name: Nachname type: STRING - name: Traegerverein type: Traegerverein - name: Vorname 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 [Landesverband] select control should be loaded from the relative URL: "/BundesverbandService/landesverband" (HTTP-GET) The data source for the [Traegerverein] select control should be loaded from the relative URL: "/TraegervereinService/traegerverein" (HTTP-GET) An existing Vorstandsmitglied entity should be loaded from the relative URL: "/TraegervereinService/vorstandsmitglied/{id}" (HTTP-GET) If a new Vorstandsmitglied entity has been created, the new entity should be posted to the relative URL: "/TraegervereinService/vorstandsmitglied" (HTTP-POST) If an existing Vorstandsmitglied entity has been updated, the modified entity should be sent to the relative URL: "/TraegervereinService/vorstandsmitglied/{id}" (HTTP-PUT) If an existing Vorstandsmitglied entity has to be deleted, the following relative URL should be called: "/TraegervereinService/vorstandsmitglied/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum