Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
LandApp
Please create a React-JS application for the LandModule. The application has to offer the following views for the user interface: 1. AusbildungsprogrammView 2. FahrzeugAnforderungView 3. FuehrerscheinklasseView 4. LandView 5. PraxisUnterrichtView 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 AusbildungsprogrammView must contain the following fields: - name: Fuehrerscheinklasse type: Fuehrerscheinklasse - name: GueltigBis type: DATE - name: GueltigVon type: DATE - name: HatBegleitetesFahren type: BOOL - name: HatSimulatorphase type: BOOL - name: Land type: Land - name: MinAutobahnfahrten type: INT - name: MinLandstrassenfahrten type: INT - name: MinNachtfahrten type: INT - name: MinPraxis type: INT - name: MinSonderfahrten type: INT - name: MinTheorie type: INT - name: Name type: STRING The data source for the [Fuehrerscheinklasse] select control should be loaded from the relative URL: "/LandService/fuehrerscheinklasse" (HTTP-GET) The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Ausbildungsprogramm entity should be loaded from the relative URL: "/LandService/ausbildungsprogramm/{id}" (HTTP-GET) If a new Ausbildungsprogramm entity has been created, the new entity should be posted to the relative URL: "/LandService/ausbildungsprogramm" (HTTP-POST) If an existing Ausbildungsprogramm entity has been updated, the modified entity should be sent to the relative URL: "/LandService/ausbildungsprogramm/{id}" (HTTP-PUT) If an existing Ausbildungsprogramm entity has to be deleted, the following relative URL should be called: "/LandService/ausbildungsprogramm/{id}" (HTTP-DELETE) Add a HTML table to the view with the following TheorieUnterricht columns: - column: IstGrundstoff - column: Thema - column: UnterrichtsNummer - column: IstKlassenspezifisch - column: Unterrichtsart - column: FahrschuleZweigstelle - column: DatumZeit - column: Ausbildungsprogramm - column: Fahrlehrer - column: DauerMinuten The table should have the title "TheorieUnterrichts" und the data must be loaded from the server with the following relative URL: "/FahrschuleZweigstelleService/theorieunterricht/ausbildungsprogramm/{id}" Add a HTML table to the view with the following PraxisUnterricht columns: - column: FahrschuleZweigstelle - column: DatumZeit - column: IstNachtfahrt - column: DauerMinuten - column: IstSonderfahrt - column: IstLandstrassenfahrt - column: Fahrlehrer - column: Fahrzeug - column: Ausbildungsprogramm - column: Unterrichtsart - column: IstAutobahnfahrt The table should have the title "PraxisUnterrichts" und the data must be loaded from the server with the following relative URL: "/LandService/praxisunterricht/ausbildungsprogramm/{id}" 2. The FahrzeugAnforderungView must contain the following fields: - name: Beschreibung type: STRING - name: BrauchtDoppelpedale type: BOOL - name: BrauchtGeschlossenenAufbau type: BOOL - name: Fuehrerscheinklasse type: Fuehrerscheinklasse - name: Land type: Land - name: MinBetriebsmasseKg type: INT - name: MinBreiteM type: STRING - name: MinGesamtmasseKg type: INT - name: MinHoeheM type: STRING - name: MinLaengeM type: STRING The data source for the [Fuehrerscheinklasse] select control should be loaded from the relative URL: "/LandService/fuehrerscheinklasse" (HTTP-GET) The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing FahrzeugAnforderung entity should be loaded from the relative URL: "/LandService/fahrzeuganforderung/{id}" (HTTP-GET) If a new FahrzeugAnforderung entity has been created, the new entity should be posted to the relative URL: "/LandService/fahrzeuganforderung" (HTTP-POST) If an existing FahrzeugAnforderung entity has been updated, the modified entity should be sent to the relative URL: "/LandService/fahrzeuganforderung/{id}" (HTTP-PUT) If an existing FahrzeugAnforderung entity has to be deleted, the following relative URL should be called: "/LandService/fahrzeuganforderung/{id}" (HTTP-DELETE) 3. The FuehrerscheinklasseView must contain the following fields: - name: Beschreibung type: STRING - name: Code type: STRING - name: IstBeruflich type: BOOL - name: Land type: Land - name: Mindestalter type: INT The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Fuehrerscheinklasse entity should be loaded from the relative URL: "/LandService/fuehrerscheinklasse/{id}" (HTTP-GET) If a new Fuehrerscheinklasse entity has been created, the new entity should be posted to the relative URL: "/LandService/fuehrerscheinklasse" (HTTP-POST) If an existing Fuehrerscheinklasse entity has been updated, the modified entity should be sent to the relative URL: "/LandService/fuehrerscheinklasse/{id}" (HTTP-PUT) If an existing Fuehrerscheinklasse entity has to be deleted, the following relative URL should be called: "/LandService/fuehrerscheinklasse/{id}" (HTTP-DELETE) 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/fuehrerscheinklasse/{id}" Add a HTML table to the view with the following Ausbildungsprogramm columns: - column: MinNachtfahrten - column: GueltigBis - column: MinLandstrassenfahrten - column: Fuehrerscheinklasse - column: MinPraxis - column: Name - column: MinAutobahnfahrten - column: Land - column: HatBegleitetesFahren - column: MinSonderfahrten - column: HatSimulatorphase - column: MinTheorie - column: GueltigVon The table should have the title "Ausbildungsprogramms" und the data must be loaded from the server with the following relative URL: "/LandService/ausbildungsprogramm/fuehrerscheinklasse/{id}" Add a HTML table to the view with the following Fahrlehrerlaubnis columns: - column: IstGesperrt - column: ErlaubnisNummer - column: Fuehrerscheinklasse - column: Aufsichtsbehoerde - column: Fahrlehrer - column: GueltigBis - column: ErteiltAm The table should have the title "Fahrlehrerlaubniss" und the data must be loaded from the server with the following relative URL: "/AufsichtsbehoerdeService/fahrlehrerlaubnis/fuehrerscheinklasse/{id}" Add a HTML table to the view with the following KlasseRechtsgrundlage columns: - column: Fuehrerscheinklasse - column: Rechtsgrundlage The table should have the title "KlasseRechtsgrundlages" und the data must be loaded from the server with the following relative URL: "/RechtsgrundlageService/klasserechtsgrundlage/fuehrerscheinklasse/{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/fuehrerscheinklasse/{id}" Add a HTML table to the view with the following FahrzeugAnforderung columns: - column: BrauchtDoppelpedale - column: MinGesamtmasseKg - column: MinBreiteM - column: Land - column: MinHoeheM - column: BrauchtGeschlossenenAufbau - column: MinBetriebsmasseKg - column: MinLaengeM - column: Fuehrerscheinklasse - column: Beschreibung The table should have the title "FahrzeugAnforderungs" und the data must be loaded from the server with the following relative URL: "/LandService/fahrzeuganforderung/fuehrerscheinklasse/{id}" 4. The LandView must contain the following fields: - name: IsoCode type: STRING - name: Name type: STRING An existing Land entity should be loaded from the relative URL: "/LandService/land/{id}" (HTTP-GET) If a new Land entity has been created, the new entity should be posted to the relative URL: "/LandService/land" (HTTP-POST) If an existing Land entity has been updated, the modified entity should be sent to the relative URL: "/LandService/land/{id}" (HTTP-PUT) If an existing Land entity has to be deleted, the following relative URL should be called: "/LandService/land/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Ausbildungsprogramm columns: - column: MinNachtfahrten - column: GueltigBis - column: MinLandstrassenfahrten - column: Fuehrerscheinklasse - column: MinPraxis - column: Name - column: MinAutobahnfahrten - column: Land - column: HatBegleitetesFahren - column: MinSonderfahrten - column: HatSimulatorphase - column: MinTheorie - column: GueltigVon The table should have the title "Ausbildungsprogramms" und the data must be loaded from the server with the following relative URL: "/LandService/ausbildungsprogramm/land/{id}" Add a HTML table to the view with the following Statistik columns: - column: Stichtag - column: AnzahlBestandenTheorie - column: AnzahlFahrschueler - column: AnzahlFahrlehrer - column: AnzahlBestandenPraxis - column: AnzahlFahrschulen - column: AnzahlPraxispruefungen - column: AnzahlTheoriepruefungen - column: Land The table should have the title "Statistiks" und the data must be loaded from the server with the following relative URL: "/FahrlehrerService/statistik/land/{id}" Add a HTML table to the view with the following Fuehrerscheinklasse columns: - column: Mindestalter - column: IstBeruflich - column: Code - column: Land - column: Beschreibung The table should have the title "Fuehrerscheinklasses" und the data must be loaded from the server with the following relative URL: "/LandService/fuehrerscheinklasse/land/{id}" Add a HTML table to the view with the following Aufsichtsbehoerde columns: - column: Name - column: TypCode - column: Ort - column: Postleitzahl - column: Strasse - column: Land The table should have the title "Aufsichtsbehoerdes" und the data must be loaded from the server with the following relative URL: "/AufsichtsbehoerdeService/aufsichtsbehoerde/land/{id}" Add a HTML table to the view with the following Fahrschule columns: - column: Handelsname - column: Strasse - column: IstMilitaerisch - column: Ort - column: IstBehoerde - column: Postleitzahl - column: IstGewerblich - column: GruendungDatum - column: Webseite - column: Name - column: Rechtsform - column: Telefon - column: LandCode The table should have the title "Fahrschules" und the data must be loaded from the server with the following relative URL: "/FahrschuleService/fahrschule/landcode/{id}" Add a HTML table to the view with the following Rechtsgrundlage columns: - column: Beschreibung - column: Land - column: GueltigBis - column: GueltigVon - column: Titel - column: ReferenzUrl - column: Code The table should have the title "Rechtsgrundlages" und the data must be loaded from the server with the following relative URL: "/RechtsgrundlageService/rechtsgrundlage/land/{id}" Add a HTML table to the view with the following FahrzeugAnforderung columns: - column: BrauchtDoppelpedale - column: MinGesamtmasseKg - column: MinBreiteM - column: Land - column: MinHoeheM - column: BrauchtGeschlossenenAufbau - column: MinBetriebsmasseKg - column: MinLaengeM - column: Fuehrerscheinklasse - column: Beschreibung The table should have the title "FahrzeugAnforderungs" und the data must be loaded from the server with the following relative URL: "/LandService/fahrzeuganforderung/land/{id}" 5. The PraxisUnterrichtView must contain the following fields: - name: Ausbildungsprogramm type: Ausbildungsprogramm - name: DatumZeit type: DATE - name: DauerMinuten type: INT - name: Fahrlehrer type: Fahrlehrer - name: FahrschuleZweigstelle type: FahrschuleZweigstelle - name: Fahrzeug type: Fahrzeug - name: IstAutobahnfahrt type: BOOL - name: IstLandstrassenfahrt type: BOOL - name: IstNachtfahrt type: BOOL - name: IstSonderfahrt type: BOOL - name: Unterrichtsart type: Unterrichtsart The data source for the [FahrschuleZweigstelle] select control should be loaded from the relative URL: "/FahrschuleZweigstelleService/fahrschulezweigstelle" (HTTP-GET) The data source for the [Fahrzeug] select control should be loaded from the relative URL: "/FahrzeugtypService/fahrzeug" (HTTP-GET) The data source for the [Fahrlehrer] select control should be loaded from the relative URL: "/FahrlehrerService/fahrlehrer" (HTTP-GET) The data source for the [Ausbildungsprogramm] select control should be loaded from the relative URL: "/LandService/ausbildungsprogramm" (HTTP-GET) The data source for the [Unterrichtsart] select control should be loaded from the relative URL: "/FahrschuleZweigstelleService/unterrichtsart" (HTTP-GET) An existing PraxisUnterricht entity should be loaded from the relative URL: "/LandService/praxisunterricht/{id}" (HTTP-GET) If a new PraxisUnterricht entity has been created, the new entity should be posted to the relative URL: "/LandService/praxisunterricht" (HTTP-POST) If an existing PraxisUnterricht entity has been updated, the modified entity should be sent to the relative URL: "/LandService/praxisunterricht/{id}" (HTTP-PUT) If an existing PraxisUnterricht entity has to be deleted, the following relative URL should be called: "/LandService/praxisunterricht/{id}" (HTTP-DELETE) 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/praxisunterricht/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum