Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
FortbildungApp
Please create a React-JS application for the FortbildungModule. The application has to offer the following views for the user interface: 1. FortbildungView 2. StudienprogrammView 3. ZahnarztFortbildungView 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 FortbildungView must contain the following fields: - name: Anbieter type: STRING - name: Beginn type: DATE - name: Ende type: DATE - name: IstIndustriegesponsert type: BOOL - name: Land type: Land - name: Titel type: STRING The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Fortbildung entity should be loaded from the relative URL: "/FortbildungService/fortbildung/{id}" (HTTP-GET) If a new Fortbildung entity has been created, the new entity should be posted to the relative URL: "/FortbildungService/fortbildung" (HTTP-POST) If an existing Fortbildung entity has been updated, the modified entity should be sent to the relative URL: "/FortbildungService/fortbildung/{id}" (HTTP-PUT) If an existing Fortbildung entity has to be deleted, the following relative URL should be called: "/FortbildungService/fortbildung/{id}" (HTTP-DELETE) Add a HTML table to the view with the following ZahnarztFortbildung columns: - column: Zertifikatsnummer - column: Zahnarzt - column: Punkte - column: Fortbildung The table should have the title "ZahnarztFortbildungs" und the data must be loaded from the server with the following relative URL: "/FortbildungService/zahnarztfortbildung/fortbildung/{id}" 2. The StudienprogrammView must contain the following fields: - name: DauerSemester type: LONG - name: HatKlinik type: BOOL - name: HatVorklinik type: BOOL - name: Land type: Land - name: Name type: STRING - name: Universitaet type: STRING - name: Zugangsbeschraenkung type: STRING The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Studienprogramm entity should be loaded from the relative URL: "/FortbildungService/studienprogramm/{id}" (HTTP-GET) If a new Studienprogramm entity has been created, the new entity should be posted to the relative URL: "/FortbildungService/studienprogramm" (HTTP-POST) If an existing Studienprogramm entity has been updated, the modified entity should be sent to the relative URL: "/FortbildungService/studienprogramm/{id}" (HTTP-PUT) If an existing Studienprogramm entity has to be deleted, the following relative URL should be called: "/FortbildungService/studienprogramm/{id}" (HTTP-DELETE) Add a HTML table to the view with the following ZahnarztAbschluss columns: - column: Abschlussjahr - column: Zahnarzt - column: Abschluss - column: Universitaet - column: Studienprogramm The table should have the title "ZahnarztAbschlusss" und the data must be loaded from the server with the following relative URL: "/ZahnarztService/zahnarztabschluss/studienprogramm/{id}" 3. The ZahnarztFortbildungView must contain the following fields: - name: Fortbildung type: Fortbildung - name: Punkte type: STRING - name: Zahnarzt type: Zahnarzt - name: Zertifikatsnummer type: STRING The data source for the [Zahnarzt] select control should be loaded from the relative URL: "/ZahnarztService/zahnarzt" (HTTP-GET) The data source for the [Fortbildung] select control should be loaded from the relative URL: "/FortbildungService/fortbildung" (HTTP-GET) An existing ZahnarztFortbildung entity should be loaded from the relative URL: "/FortbildungService/zahnarztfortbildung/{id}" (HTTP-GET) If a new ZahnarztFortbildung entity has been created, the new entity should be posted to the relative URL: "/FortbildungService/zahnarztfortbildung" (HTTP-POST) If an existing ZahnarztFortbildung entity has been updated, the modified entity should be sent to the relative URL: "/FortbildungService/zahnarztfortbildung/{id}" (HTTP-PUT) If an existing ZahnarztFortbildung entity has to be deleted, the following relative URL should be called: "/FortbildungService/zahnarztfortbildung/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum