Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
PraxistypApp
Please create a React-JS application for the PraxistypModule. The application has to offer the following views for the user interface: 1. BerufskrankheitView 2. PraxistypView 3. ZahnarztBerufskrankheitView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 3 views are defined below. 1. The BerufskrankheitView must contain the following fields: - name: Beschreibung type: STRING - name: IstAllergisch type: BOOL - name: IstMuskelSkelett type: BOOL - name: Koerperregion type: STRING - name: Name type: STRING An existing Berufskrankheit entity should be loaded from the relative URL: "/PraxistypService/berufskrankheit/{id}" (HTTP-GET) If a new Berufskrankheit entity has been created, the new entity should be posted to the relative URL: "/PraxistypService/berufskrankheit" (HTTP-POST) If an existing Berufskrankheit entity has been updated, the modified entity should be sent to the relative URL: "/PraxistypService/berufskrankheit/{id}" (HTTP-PUT) If an existing Berufskrankheit entity has to be deleted, the following relative URL should be called: "/PraxistypService/berufskrankheit/{id}" (HTTP-DELETE) Add a HTML table to the view with the following ZahnarztBerufskrankheit columns: - column: IstArbeitsbedingtBestaetigt - column: Zahnarzt - column: Diagnosedatum - column: Berufskrankheit The table should have the title "ZahnarztBerufskrankheits" und the data must be loaded from the server with the following relative URL: "/PraxistypService/zahnarztberufskrankheit/berufskrankheit/{id}" 2. The PraxistypView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing Praxistyp entity should be loaded from the relative URL: "/PraxistypService/praxistyp/{id}" (HTTP-GET) If a new Praxistyp entity has been created, the new entity should be posted to the relative URL: "/PraxistypService/praxistyp" (HTTP-POST) If an existing Praxistyp entity has been updated, the modified entity should be sent to the relative URL: "/PraxistypService/praxistyp/{id}" (HTTP-PUT) If an existing Praxistyp entity has to be deleted, the following relative URL should be called: "/PraxistypService/praxistyp/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Zahnarztpraxis columns: - column: IstMedizinischesVersorgungszentrum - column: Land - column: Name - column: Stadt - column: Praxistyp - column: EigentuemerZahnarzt The table should have the title "Zahnarztpraxiss" und the data must be loaded from the server with the following relative URL: "/ZahnarztpraxisService/zahnarztpraxis/praxistyp/{id}" 3. The ZahnarztBerufskrankheitView must contain the following fields: - name: Berufskrankheit type: Berufskrankheit - name: Diagnosedatum type: DATE - name: IstArbeitsbedingtBestaetigt type: BOOL - name: Zahnarzt type: Zahnarzt The data source for the [Berufskrankheit] select control should be loaded from the relative URL: "/PraxistypService/berufskrankheit" (HTTP-GET) The data source for the [Zahnarzt] select control should be loaded from the relative URL: "/ZahnarztService/zahnarzt" (HTTP-GET) An existing ZahnarztBerufskrankheit entity should be loaded from the relative URL: "/PraxistypService/zahnarztberufskrankheit/{id}" (HTTP-GET) If a new ZahnarztBerufskrankheit entity has been created, the new entity should be posted to the relative URL: "/PraxistypService/zahnarztberufskrankheit" (HTTP-POST) If an existing ZahnarztBerufskrankheit entity has been updated, the modified entity should be sent to the relative URL: "/PraxistypService/zahnarztberufskrankheit/{id}" (HTTP-PUT) If an existing ZahnarztBerufskrankheit entity has to be deleted, the following relative URL should be called: "/PraxistypService/zahnarztberufskrankheit/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum