Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
PruefungView
Please create a React-JS view called "PruefungView" for the fields of the Pruefung entity. The PruefungView must contain the following fields: - name: Beschreibung type: STRING - name: DauerMinuten type: INT - name: HatPraxisTeil type: BOOL - name: HatTheorieTeil type: BOOL - name: Name type: STRING - name: Zertifizierungsstelle type: Zertifizierungsstelle The data source for the [Zertifizierungsstelle] select control should be loaded from the relative URL: "/ZertifizierungsstelleService/zertifizierungsstelle" (HTTP-GET) An existing Pruefung entity should be loaded from the relative URL: "/PruefungService/pruefung/{id}" (HTTP-GET) If a new Pruefung entity has been created, the new entity should be posted to the relative URL: "/PruefungService/pruefung" (HTTP-POST) If an existing Pruefung entity has been updated, the modified entity should be sent to the relative URL: "/PruefungService/pruefung/{id}" (HTTP-PUT) If an existing Pruefung entity has to be deleted, the following relative URL should be called: "/PruefungService/pruefung/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Pruefungsteilnahme columns: - column: Punktzahl - column: Hundetrainer - column: Datum - column: Ergebnis - column: Pruefung The table should have the title "Pruefungsteilnahmes" und the data must be loaded from the server with the following relative URL: "/PruefungService/pruefungsteilnahme/pruefung/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum