Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
FahrschuleApp
Please create a React-JS application for the FahrschuleModule. The application has to offer the following views for the user interface: 1. AnmeldungView 2. FahrschuelerView 3. FahrschuleView 4. PrueferView 5. PruefungView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 5 views are defined below. 1. The AnmeldungView must contain the following fields: - name: AnmeldeDatum type: DATE - name: Fahrschueler type: Fahrschueler - name: Fahrschule type: Fahrschule - name: Fuehrerscheinklasse type: Fuehrerscheinklasse - name: GeplantesPruefDatum type: DATE - name: StatusCode type: STRING The data source for the [Fahrschueler] select control should be loaded from the relative URL: "/FahrschuleService/fahrschueler" (HTTP-GET) The data source for the [Fahrschule] select control should be loaded from the relative URL: "/FahrschuleService/fahrschule" (HTTP-GET) The data source for the [Fuehrerscheinklasse] select control should be loaded from the relative URL: "/LandService/fuehrerscheinklasse" (HTTP-GET) An existing Anmeldung entity should be loaded from the relative URL: "/FahrschuleService/anmeldung/{id}" (HTTP-GET) If a new Anmeldung entity has been created, the new entity should be posted to the relative URL: "/FahrschuleService/anmeldung" (HTTP-POST) If an existing Anmeldung entity has been updated, the modified entity should be sent to the relative URL: "/FahrschuleService/anmeldung/{id}" (HTTP-PUT) If an existing Anmeldung entity has to be deleted, the following relative URL should be called: "/FahrschuleService/anmeldung/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Pruefung columns: - column: Versuch - column: Aufsichtsbehoerde - column: Pruefer - column: Anmeldung - column: OrtBeschreibung - column: Pruefungsart - column: ErgebnisCode - column: DatumZeit - column: DauerMinuten The table should have the title "Pruefungs" und the data must be loaded from the server with the following relative URL: "/FahrschuleService/pruefung/anmeldung/{id}" Add a HTML table to the view with the following Teilnahme columns: - column: PraxisUnterricht - column: Anmeldung - column: Anwesenheit - column: TheorieUnterricht - column: Bewertung The table should have the title "Teilnahmes" und the data must be loaded from the server with the following relative URL: "/FahrschuleZweigstelleService/teilnahme/anmeldung/{id}" 2. The FahrschuelerView must contain the following fields: - name: ErstantragDatum type: DATE - name: HatVorbesitz type: BOOL - name: Notizen type: STRING - name: Person type: Person The data source for the [Person] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) An existing Fahrschueler entity should be loaded from the relative URL: "/FahrschuleService/fahrschueler/{id}" (HTTP-GET) If a new Fahrschueler entity has been created, the new entity should be posted to the relative URL: "/FahrschuleService/fahrschueler" (HTTP-POST) If an existing Fahrschueler entity has been updated, the modified entity should be sent to the relative URL: "/FahrschuleService/fahrschueler/{id}" (HTTP-PUT) If an existing Fahrschueler entity has to be deleted, the following relative URL should be called: "/FahrschuleService/fahrschueler/{id}" (HTTP-DELETE) Add a HTML table to the view with the following BegleitpersonZuweisung columns: - column: Mindestalter - column: MindestjahreBesitz - column: Fahrschueler - column: EndDatum - column: StartDatum - column: MaxPunkte - column: Person The table should have the title "BegleitpersonZuweisungs" und the data must be loaded from the server with the following relative URL: "/PersonService/begleitpersonzuweisung/fahrschueler/{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/fahrschueler/{id}" 3. 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}" 4. The PrueferView must contain the following fields: - name: Arbeitgeber type: STRING - name: IstBeamter type: BOOL - name: IstTechnischerExperte type: BOOL - name: Person type: Person The data source for the [Person] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) An existing Pruefer entity should be loaded from the relative URL: "/FahrschuleService/pruefer/{id}" (HTTP-GET) If a new Pruefer entity has been created, the new entity should be posted to the relative URL: "/FahrschuleService/pruefer" (HTTP-POST) If an existing Pruefer entity has been updated, the modified entity should be sent to the relative URL: "/FahrschuleService/pruefer/{id}" (HTTP-PUT) If an existing Pruefer entity has to be deleted, the following relative URL should be called: "/FahrschuleService/pruefer/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Pruefung columns: - column: Versuch - column: Aufsichtsbehoerde - column: Pruefer - column: Anmeldung - column: OrtBeschreibung - column: Pruefungsart - column: ErgebnisCode - column: DatumZeit - column: DauerMinuten The table should have the title "Pruefungs" und the data must be loaded from the server with the following relative URL: "/FahrschuleService/pruefung/pruefer/{id}" 5. The PruefungView must contain the following fields: - name: Anmeldung type: Anmeldung - name: Aufsichtsbehoerde type: Aufsichtsbehoerde - name: DatumZeit type: DATE - name: DauerMinuten type: INT - name: ErgebnisCode type: STRING - name: OrtBeschreibung type: STRING - name: Pruefer type: Pruefer - name: Pruefungsart type: Pruefungsart - name: Versuch type: INT The data source for the [Aufsichtsbehoerde] select control should be loaded from the relative URL: "/AufsichtsbehoerdeService/aufsichtsbehoerde" (HTTP-GET) The data source for the [Anmeldung] select control should be loaded from the relative URL: "/FahrschuleService/anmeldung" (HTTP-GET) The data source for the [Pruefungsart] select control should be loaded from the relative URL: "/FahrzeugtypService/pruefungsart" (HTTP-GET) The data source for the [Pruefer] select control should be loaded from the relative URL: "/FahrschuleService/pruefer" (HTTP-GET) An existing Pruefung entity should be loaded from the relative URL: "/FahrschuleService/pruefung/{id}" (HTTP-GET) If a new Pruefung entity has been created, the new entity should be posted to the relative URL: "/FahrschuleService/pruefung" (HTTP-POST) If an existing Pruefung entity has been updated, the modified entity should be sent to the relative URL: "/FahrschuleService/pruefung/{id}" (HTTP-PUT) If an existing Pruefung entity has to be deleted, the following relative URL should be called: "/FahrschuleService/pruefung/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Qualitaetspruefung columns: - column: FahrschuleZweigstelle - column: Pruefungsart - column: HatPraxisbeobachtung - column: AnzahlAbweichungen - column: Ergebnis - column: HatTheoriebeobachtung - column: PruefDatum - column: Aufsichtsbehoerde The table should have the title "Qualitaetspruefungs" und the data must be loaded from the server with the following relative URL: "/AufsichtsbehoerdeService/qualitaetspruefung/pruefungsart/{id}" Add a HTML table to the view with the following PruefungRechtsgrundlage columns: - column: Rechtsgrundlage - column: Pruefung The table should have the title "PruefungRechtsgrundlages" und the data must be loaded from the server with the following relative URL: "/RechtsgrundlageService/pruefungrechtsgrundlage/pruefung/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum