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: EmailAdresse type: STRING - name: Geburtsdatum type: DATE - name: Geschlecht type: STRING - name: Nachname type: STRING - name: Ort type: STRING - name: Postleitzahl type: STRING - name: Strasse type: STRING - name: Telefonnummer 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 Arbeitsvertrag columns: - column: Praxis - column: Startdatum - column: Personalrolle - column: Enddatum - column: Beschaeftigungsart - column: Wochenstunden - column: Person The table should have the title "Arbeitsvertrags" und the data must be loaded from the server with the following relative URL: "/PraxisService/arbeitsvertrag/person/{id}" Add a HTML table to the view with the following Arzt columns: - column: Person - column: Approbationsnummer - column: IstKrankenhausbeschaeftigt - column: IstVertragsarzt - column: IstPrivatarzt - column: Fachgebiet - column: IstWahlarzt The table should have the title "Arzts" und the data must be loaded from the server with the following relative URL: "/PersonService/arzt/person/{id}" Add a HTML table to the view with the following Patient columns: - column: Person - column: Versicherungsnummer - column: IstSelbstzahler - column: IstObdachlos The table should have the title "Patients" und the data must be loaded from the server with the following relative URL: "/PatientService/patient/person/{id}" Add a HTML table to the view with the following NichtmedizinischesPersonal columns: - column: Person - column: Berufsbezeichnung The table should have the title "NichtmedizinischesPersonals" und the data must be loaded from the server with the following relative URL: "/PatientService/nichtmedizinischespersonal/person/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum