Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
SchuelerView
Please create a React-JS view called "SchuelerView" for the fields of the Schueler entity. The SchuelerView must contain the following fields: - name: ElternBildungsniveau type: STRING - name: Geschlecht type: STRING - name: HatMigrationshintergrund type: BOOL - name: HaushaltEinkommen type: STRING - name: Klassenstufe type: LONG - name: Land type: Land - name: Region type: Region - name: Schulform type: STRING The data source for the [Region] select control should be loaded from the relative URL: "/RegionService/region" (HTTP-GET) The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Schueler entity should be loaded from the relative URL: "/SchuelerService/schueler/{id}" (HTTP-GET) If a new Schueler entity has been created, the new entity should be posted to the relative URL: "/SchuelerService/schueler" (HTTP-POST) If an existing Schueler entity has been updated, the modified entity should be sent to the relative URL: "/SchuelerService/schueler/{id}" (HTTP-PUT) If an existing Schueler entity has to be deleted, the following relative URL should be called: "/SchuelerService/schueler/{id}" (HTTP-DELETE) Add a HTML table to the view with the following NachhilfeVertrag columns: - column: Nachhilfeanbieter - column: StartDatum - column: Schueler - column: EndDatum - column: Foerderart - column: MindestlaufzeitMonate - column: NachhilfeZentrum - column: Anmeldegebuehr - column: Monatsgebuehr The table should have the title "NachhilfeVertrags" und the data must be loaded from the server with the following relative URL: "/SchuelerService/nachhilfevertrag/schueler/{id}" Add a HTML table to the view with the following SchuelerHaushalt columns: - column: VonDatum - column: BisDatum - column: Haushalt - column: Schueler The table should have the title "SchuelerHaushalts" und the data must be loaded from the server with the following relative URL: "/SchuelerService/schuelerhaushalt/schueler/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum