Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
BeschaeftigungstypApp
Please create a React-JS application for the BeschaeftigungstypModule. The application has to offer the following views for the user interface: 1. BeschaeftigungstypView 2. ZahnarztBeschaeftigungView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 2 views are defined below. 1. The BeschaeftigungstypView must contain the following fields: - name: Beschreibung type: STRING - name: Name type: STRING An existing Beschaeftigungstyp entity should be loaded from the relative URL: "/BeschaeftigungstypService/beschaeftigungstyp/{id}" (HTTP-GET) If a new Beschaeftigungstyp entity has been created, the new entity should be posted to the relative URL: "/BeschaeftigungstypService/beschaeftigungstyp" (HTTP-POST) If an existing Beschaeftigungstyp entity has been updated, the modified entity should be sent to the relative URL: "/BeschaeftigungstypService/beschaeftigungstyp/{id}" (HTTP-PUT) If an existing Beschaeftigungstyp entity has to be deleted, the following relative URL should be called: "/BeschaeftigungstypService/beschaeftigungstyp/{id}" (HTTP-DELETE) Add a HTML table to the view with the following ZahnarztBeschaeftigung columns: - column: Ende - column: Zahnarztpraxis - column: Rollentyp - column: Beginn - column: Beschaeftigungstyp - column: IstEigentuemer - column: Zahnarzt The table should have the title "ZahnarztBeschaeftigungs" und the data must be loaded from the server with the following relative URL: "/BeschaeftigungstypService/zahnarztbeschaeftigung/beschaeftigungstyp/{id}" 2. The ZahnarztBeschaeftigungView must contain the following fields: - name: Beginn type: DATE - name: Beschaeftigungstyp type: Beschaeftigungstyp - name: Ende type: DATE - name: IstEigentuemer type: BOOL - name: Rollentyp type: Rollentyp - name: Zahnarzt type: Zahnarzt - name: Zahnarztpraxis type: Zahnarztpraxis The data source for the [Zahnarzt] select control should be loaded from the relative URL: "/ZahnarztService/zahnarzt" (HTTP-GET) The data source for the [Beschaeftigungstyp] select control should be loaded from the relative URL: "/BeschaeftigungstypService/beschaeftigungstyp" (HTTP-GET) The data source for the [Rollentyp] select control should be loaded from the relative URL: "/RollentypService/rollentyp" (HTTP-GET) The data source for the [Zahnarztpraxis] select control should be loaded from the relative URL: "/ZahnarztpraxisService/zahnarztpraxis" (HTTP-GET) An existing ZahnarztBeschaeftigung entity should be loaded from the relative URL: "/BeschaeftigungstypService/zahnarztbeschaeftigung/{id}" (HTTP-GET) If a new ZahnarztBeschaeftigung entity has been created, the new entity should be posted to the relative URL: "/BeschaeftigungstypService/zahnarztbeschaeftigung" (HTTP-POST) If an existing ZahnarztBeschaeftigung entity has been updated, the modified entity should be sent to the relative URL: "/BeschaeftigungstypService/zahnarztbeschaeftigung/{id}" (HTTP-PUT) If an existing ZahnarztBeschaeftigung entity has to be deleted, the following relative URL should be called: "/BeschaeftigungstypService/zahnarztbeschaeftigung/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum