Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
DokumentView
Please create a React-JS view called "DokumentView" for the fields of the Dokument entity. The DokumentView must contain the following fields: - name: Beschreibung type: STRING - name: Dokumenttyp type: Dokumenttyp - name: Erstellungsdatum type: DATE - name: Titel type: STRING - name: Url type: STRING - name: Verein type: Verein The data source for the [Verein] select control should be loaded from the relative URL: "/VereinService/verein" (HTTP-GET) The data source for the [Dokumenttyp] select control should be loaded from the relative URL: "/DokumenttypService/dokumenttyp" (HTTP-GET) An existing Dokument entity should be loaded from the relative URL: "/VereinService/dokument/{id}" (HTTP-GET) If a new Dokument entity has been created, the new entity should be posted to the relative URL: "/VereinService/dokument" (HTTP-POST) If an existing Dokument entity has been updated, the modified entity should be sent to the relative URL: "/VereinService/dokument/{id}" (HTTP-PUT) If an existing Dokument entity has to be deleted, the following relative URL should be called: "/VereinService/dokument/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum