Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
VerbandApp
Please create a React-JS application for the VerbandModule. The application has to offer the following views for the user interface: 1. VerbandView 2. WerkstattangebotView 3. WerkstattVerbandsmitgliedschaftView 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 VerbandView must contain the following fields: - name: Kurzname type: STRING - name: Land type: Land - name: Name type: STRING - name: Verbandsebene type: STRING - name: WebseiteUrl type: STRING The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Verband entity should be loaded from the relative URL: "/VerbandService/verband/{id}" (HTTP-GET) If a new Verband entity has been created, the new entity should be posted to the relative URL: "/VerbandService/verband" (HTTP-POST) If an existing Verband entity has been updated, the modified entity should be sent to the relative URL: "/VerbandService/verband/{id}" (HTTP-PUT) If an existing Verband entity has to be deleted, the following relative URL should be called: "/VerbandService/verband/{id}" (HTTP-DELETE) Add a HTML table to the view with the following WerkstattVerbandsmitgliedschaft columns: - column: MitgliedVon - column: Verband - column: MitgliedBis - column: Werkstatt - column: Mitgliedsart The table should have the title "WerkstattVerbandsmitgliedschafts" und the data must be loaded from the server with the following relative URL: "/VerbandService/werkstattverbandsmitgliedschaft/verband/{id}" 2. The WerkstattangebotView must contain the following fields: - name: Angebotstyp type: STRING - name: Beschreibung type: STRING - name: Name type: STRING - name: RelevantAuslagerung type: BOOL - name: Werkstatt type: Werkstatt The data source for the [Werkstatt] select control should be loaded from the relative URL: "/WerkstattService/werkstatt" (HTTP-GET) An existing Werkstattangebot entity should be loaded from the relative URL: "/VerbandService/werkstattangebot/{id}" (HTTP-GET) If a new Werkstattangebot entity has been created, the new entity should be posted to the relative URL: "/VerbandService/werkstattangebot" (HTTP-POST) If an existing Werkstattangebot entity has been updated, the modified entity should be sent to the relative URL: "/VerbandService/werkstattangebot/{id}" (HTTP-PUT) If an existing Werkstattangebot entity has to be deleted, the following relative URL should be called: "/VerbandService/werkstattangebot/{id}" (HTTP-DELETE) 3. The WerkstattVerbandsmitgliedschaftView must contain the following fields: - name: MitgliedBis type: DATE - name: Mitgliedsart type: STRING - name: MitgliedVon type: DATE - name: Verband type: Verband - name: Werkstatt type: Werkstatt The data source for the [Werkstatt] select control should be loaded from the relative URL: "/WerkstattService/werkstatt" (HTTP-GET) The data source for the [Verband] select control should be loaded from the relative URL: "/VerbandService/verband" (HTTP-GET) An existing WerkstattVerbandsmitgliedschaft entity should be loaded from the relative URL: "/VerbandService/werkstattverbandsmitgliedschaft/{id}" (HTTP-GET) If a new WerkstattVerbandsmitgliedschaft entity has been created, the new entity should be posted to the relative URL: "/VerbandService/werkstattverbandsmitgliedschaft" (HTTP-POST) If an existing WerkstattVerbandsmitgliedschaft entity has been updated, the modified entity should be sent to the relative URL: "/VerbandService/werkstattverbandsmitgliedschaft/{id}" (HTTP-PUT) If an existing WerkstattVerbandsmitgliedschaft entity has to be deleted, the following relative URL should be called: "/VerbandService/werkstattverbandsmitgliedschaft/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum