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: Eintrittsdatum type: DATE - name: Geburtsdatum type: DATE - name: Geschlecht type: STRING - name: IstEhrenamtlich type: BOOL - name: IstHauptamtlich type: BOOL - name: IstJugend type: BOOL - name: Nachname type: STRING - name: Ortsverband type: Ortsverband - name: Vorname type: STRING The data source for the [Ortsverband] select control should be loaded from the relative URL: "/OrtsverbandService/ortsverband" (HTTP-GET) 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 Personenrolle columns: - column: Regionalstelle - column: Ausbildungszentrum - column: Landesverband - column: Person - column: Rollenart - column: TechnischerZug - column: VonDatum - column: Ortsverband - column: BisDatum - column: Logistikzentrum - column: IstAktuell The table should have the title "Personenrolles" und the data must be loaded from the server with the following relative URL: "/PersonService/personenrolle/person/{id}" Add a HTML table to the view with the following Mitgliedschaft columns: - column: Person - column: VonDatum - column: BisDatum - column: Ortsverband - column: IstAktiv The table should have the title "Mitgliedschafts" und the data must be loaded from the server with the following relative URL: "/OrtsverbandService/mitgliedschaft/person/{id}" Add a HTML table to the view with the following Jugendmitgliedschaft columns: - column: BisDatum - column: Person - column: VonDatum - column: Jugendgruppe The table should have the title "Jugendmitgliedschafts" und the data must be loaded from the server with the following relative URL: "/LandesverbandService/jugendmitgliedschaft/person/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum