Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
ErlaubnisView
Please create a React-JS view called "ErlaubnisView" for the fields of the Erlaubnis entity. The ErlaubnisView must contain the following fields: - name: Ablaufdatum type: DATE - name: Ausstellungsdatum type: DATE - name: Behoerde type: Behoerde - name: Beruf type: Beruf - name: Erlaubnisnummer type: STRING - name: Erlaubnistyp type: STRING - name: Gesetz type: Gesetz - name: Hinweise type: STRING - name: IstWiderrufen type: BOOL - name: Land type: Land - name: Person type: Person - name: Sektoralerlaubnisart type: Sektoralerlaubnisart - name: Widerrufsdatum type: DATE The data source for the [Beruf] select control should be loaded from the relative URL: "/BerufService/beruf" (HTTP-GET) The data source for the [Gesetz] select control should be loaded from the relative URL: "/GesetzService/gesetz" (HTTP-GET) The data source for the [Person] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) The data source for the [Sektoralerlaubnisart] select control should be loaded from the relative URL: "/PersonService/sektoralerlaubnisart" (HTTP-GET) The data source for the [Behoerde] select control should be loaded from the relative URL: "/BehoerdeService/behoerde" (HTTP-GET) The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing Erlaubnis entity should be loaded from the relative URL: "/LandService/erlaubnis/{id}" (HTTP-GET) If a new Erlaubnis entity has been created, the new entity should be posted to the relative URL: "/LandService/erlaubnis" (HTTP-POST) If an existing Erlaubnis entity has been updated, the modified entity should be sent to the relative URL: "/LandService/erlaubnis/{id}" (HTTP-PUT) If an existing Erlaubnis entity has to be deleted, the following relative URL should be called: "/LandService/erlaubnis/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum