Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
VerbandView
Please create a React-JS view called "VerbandView" for the fields of the Verband entity. The VerbandView must contain the following fields: - name: Bundesland type: Bundesland - name: Name type: STRING - name: Staat type: Staat - name: Typ type: STRING - name: Webseite type: STRING The data source for the [Bundesland] select control should be loaded from the relative URL: "/BundeslandService/bundesland" (HTTP-GET) The data source for the [Staat] select control should be loaded from the relative URL: "/StaatService/staat" (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 VerbandMitgliedschaft columns: - column: Verband - column: Tagespflegeperson - column: VonDatum - column: BisDatum - column: Rolle The table should have the title "VerbandMitgliedschafts" und the data must be loaded from the server with the following relative URL: "/VerbandService/verbandmitgliedschaft/verband/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum