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: Bundesland type: Bundesland - name: Geburtsdatum type: DATE - name: Geschlecht type: STRING - name: Land type: Land - name: Nachname type: STRING - name: Ort type: STRING - name: Postleitzahl type: STRING - name: Strasse type: STRING - name: Vorname type: STRING The data source for the [Bundesland] select control should be loaded from the relative URL: "/LandService/bundesland" (HTTP-GET) The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (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 TeilnehmendePerson columns: - column: GradDerBehinderung - column: Status - column: Werkstatt - column: Eintrittsdatum - column: Austrittsdatum - column: Person - column: AnerkanntSchwerbehindert The table should have the title "TeilnehmendePersons" und the data must be loaded from the server with the following relative URL: "/TeilnehmendePersonService/teilnehmendeperson/person/{id}" Add a HTML table to the view with the following MitarbeitendePerson columns: - column: BeschaeftigtVon - column: Person - column: Rolle - column: Werkstatt - column: BeschaeftigtBis The table should have the title "MitarbeitendePersons" und the data must be loaded from the server with the following relative URL: "/PersonService/mitarbeitendeperson/person/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum