Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
PersonView
Please create a React-JS view called "PersonView" for the fields of the Person entity. The PersonView must contain the following fields: - name: Ausweisnummer type: STRING - name: Email type: STRING - name: Geburtsdatum type: DATE - name: GeschlechtCode type: STRING - name: Nachname type: STRING - name: Ort type: STRING - name: Postleitzahl type: STRING - name: Strasse type: STRING - name: Telefon type: STRING - name: Vorname type: STRING An existing Person entity should be loaded from the relative URL: "/PersonService/person/{id}" (HTTP-GET) If a new Person entity has been created, the new entity should be posted to the relative URL: "/PersonService/person" (HTTP-POST) If an existing Person entity has been updated, the modified entity should be sent to the relative URL: "/PersonService/person/{id}" (HTTP-PUT) If an existing Person entity has to be deleted, the following relative URL should be called: "/PersonService/person/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Fahrschueler columns: - column: ErstantragDatum - column: HatVorbesitz - column: Notizen - column: Person The table should have the title "Fahrschuelers" und the data must be loaded from the server with the following relative URL: "/FahrschuleService/fahrschueler/person/{id}" Add a HTML table to the view with the following Fahrlehrer columns: - column: IstAktiv - column: Person - column: Hauptklasse - column: ErsterlaubnisDatum The table should have the title "Fahrlehrers" und the data must be loaded from the server with the following relative URL: "/FahrlehrerService/fahrlehrer/person/{id}" 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/person/{id}" Add a HTML table to the view with the following Pruefer columns: - column: Person - column: IstBeamter - column: IstTechnischerExperte - column: Arbeitgeber The table should have the title "Pruefers" und the data must be loaded from the server with the following relative URL: "/FahrschuleService/pruefer/person/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum