Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
RezeptView
Please create a React-JS view called "RezeptView" for the fields of the Rezept entity. The RezeptView must contain the following fields: - name: Apotheke type: Apotheke - name: Arzt type: Arzt - name: Datum type: DATE - name: Kunde type: Kunde - name: RezeptTyp type: STRING The data source for the [Kunde] select control should be loaded from the relative URL: "/KundeService/kunde" (HTTP-GET) The data source for the [Arzt] select control should be loaded from the relative URL: "/ArztService/arzt" (HTTP-GET) The data source for the [Apotheke] select control should be loaded from the relative URL: "/ApothekeService/apotheke" (HTTP-GET) An existing Rezept entity should be loaded from the relative URL: "/KundeService/rezept/{id}" (HTTP-GET) If a new Rezept entity has been created, the new entity should be posted to the relative URL: "/KundeService/rezept" (HTTP-POST) If an existing Rezept entity has been updated, the modified entity should be sent to the relative URL: "/KundeService/rezept/{id}" (HTTP-PUT) If an existing Rezept entity has to be deleted, the following relative URL should be called: "/KundeService/rezept/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum