Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
FahrschuleView
Please create a React-JS view called "FahrschuleView" for the fields of the Fahrschule entity. The FahrschuleView must contain the following fields: - name: GruendungDatum type: DATE - name: Handelsname type: STRING - name: IstBehoerde type: BOOL - name: IstGewerblich type: BOOL - name: IstMilitaerisch type: BOOL - name: LandCode type: Land - name: Name type: STRING - name: Ort type: STRING - name: Postleitzahl type: STRING - name: Rechtsform type: STRING - name: Strasse type: STRING - name: Telefon type: STRING - name: Webseite type: STRING The data source for the [LandCode] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Fahrschule entity should be loaded from the relative URL: "/FahrschuleService/fahrschule/{id}" (HTTP-GET) If a new Fahrschule entity has been created, the new entity should be posted to the relative URL: "/FahrschuleService/fahrschule" (HTTP-POST) If an existing Fahrschule entity has been updated, the modified entity should be sent to the relative URL: "/FahrschuleService/fahrschule/{id}" (HTTP-PUT) If an existing Fahrschule entity has to be deleted, the following relative URL should be called: "/FahrschuleService/fahrschule/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Beschaeftigung columns: - column: EndDatum - column: Fahrlehrer - column: Fahrschule - column: StartDatum - column: Beschaeftigungsart The table should have the title "Beschaeftigungs" und the data must be loaded from the server with the following relative URL: "/FahrlehrerService/beschaeftigung/fahrschule/{id}" Add a HTML table to the view with the following FahrschuleRechtsgrundlage columns: - column: Fahrschule - column: Rechtsgrundlage The table should have the title "FahrschuleRechtsgrundlages" und the data must be loaded from the server with the following relative URL: "/RechtsgrundlageService/fahrschulerechtsgrundlage/fahrschule/{id}" Add a HTML table to the view with the following Fahrzeug columns: - column: Hersteller - column: IstSimulator - column: Baujahr - column: Fuehrerscheinklasse - column: LaengeM - column: Fahrschule - column: IstPruefungsfahrzeug - column: Fahrzeugtyp - column: Modell - column: Kennzeichen - column: HatDoppelpedale - column: MaxMasseKg - column: BreiteM - column: HatZusatzspiegel The table should have the title "Fahrzeugs" und the data must be loaded from the server with the following relative URL: "/FahrzeugtypService/fahrzeug/fahrschule/{id}" Add a HTML table to the view with the following FahrschuleAufsicht columns: - column: StartDatum - column: EndDatum - column: Fahrschule - column: Aufsichtstyp - column: Aufsichtsbehoerde The table should have the title "FahrschuleAufsichts" und the data must be loaded from the server with the following relative URL: "/PersonService/fahrschuleaufsicht/fahrschule/{id}" Add a HTML table to the view with the following FahrschuleZweigstelle columns: - column: Fahrschule - column: GeschlossenAm - column: Ort - column: Strasse - column: Name - column: Telefon - column: Postleitzahl - column: EroeffnetAm - column: ZweigCode The table should have the title "FahrschuleZweigstelles" und the data must be loaded from the server with the following relative URL: "/FahrschuleZweigstelleService/fahrschulezweigstelle/fahrschule/{id}" Add a HTML table to the view with the following Anmeldung columns: - column: AnmeldeDatum - column: Fuehrerscheinklasse - column: StatusCode - column: Fahrschule - column: Fahrschueler - column: GeplantesPruefDatum The table should have the title "Anmeldungs" und the data must be loaded from the server with the following relative URL: "/FahrschuleService/anmeldung/fahrschule/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum