Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
StudieApp
Please create a React-JS application for the StudieModule. The application has to offer the following views for the user interface: 1. StudieView 2. StudienKennzahlView 3. ZertifizierungsstelleView 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 StudieView must contain the following fields: - name: Institution type: STRING - name: Jahr type: LONG - name: Kernaussage type: STRING - 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 Studie entity should be loaded from the relative URL: "/StudieService/studie/{id}" (HTTP-GET) If a new Studie entity has been created, the new entity should be posted to the relative URL: "/StudieService/studie" (HTTP-POST) If an existing Studie entity has been updated, the modified entity should be sent to the relative URL: "/StudieService/studie/{id}" (HTTP-PUT) If an existing Studie entity has to be deleted, the following relative URL should be called: "/StudieService/studie/{id}" (HTTP-DELETE) Add a HTML table to the view with the following StudienKennzahl columns: - column: Einheit - column: Beschreibung - column: Studie - column: KennzahlName - column: KennzahlWert The table should have the title "StudienKennzahls" und the data must be loaded from the server with the following relative URL: "/StudieService/studienkennzahl/studie/{id}" 2. The StudienKennzahlView must contain the following fields: - name: Beschreibung type: STRING - name: Einheit type: STRING - name: KennzahlName type: STRING - name: KennzahlWert type: STRING - name: Studie type: Studie The data source for the [Studie] select control should be loaded from the relative URL: "/StudieService/studie" (HTTP-GET) An existing StudienKennzahl entity should be loaded from the relative URL: "/StudieService/studienkennzahl/{id}" (HTTP-GET) If a new StudienKennzahl entity has been created, the new entity should be posted to the relative URL: "/StudieService/studienkennzahl" (HTTP-POST) If an existing StudienKennzahl entity has been updated, the modified entity should be sent to the relative URL: "/StudieService/studienkennzahl/{id}" (HTTP-PUT) If an existing StudienKennzahl entity has to be deleted, the following relative URL should be called: "/StudieService/studienkennzahl/{id}" (HTTP-DELETE) 3. The ZertifizierungsstelleView must contain the following fields: - name: IstIso9001 type: BOOL - name: Land type: Land - name: Name type: STRING - name: Standard type: STRING The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Zertifizierungsstelle entity should be loaded from the relative URL: "/StudieService/zertifizierungsstelle/{id}" (HTTP-GET) If a new Zertifizierungsstelle entity has been created, the new entity should be posted to the relative URL: "/StudieService/zertifizierungsstelle" (HTTP-POST) If an existing Zertifizierungsstelle entity has been updated, the modified entity should be sent to the relative URL: "/StudieService/zertifizierungsstelle/{id}" (HTTP-PUT) If an existing Zertifizierungsstelle entity has to be deleted, the following relative URL should be called: "/StudieService/zertifizierungsstelle/{id}" (HTTP-DELETE) Add a HTML table to the view with the following AnbieterZertifizierung columns: - column: GueltigVon - column: Zertifizierungsstelle - column: Nachhilfeanbieter - column: Beschreibung - column: ZertifikatName - column: GueltigBis The table should have the title "AnbieterZertifizierungs" und the data must be loaded from the server with the following relative URL: "/NachhilfeanbieterService/anbieterzertifizierung/zertifizierungsstelle/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum