Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
EventRegistrationView
Please create a React-JS view called "EventRegistrationView" for the fields of the EventRegistration entity. The EventRegistrationView must contain the following fields: - name: Comment type: STRING - name: Customer type: Customer - name: Event type: Event - name: RegisteredAt type: DATE - name: Status type: STRING - name: TeamName type: STRING The data source for the [Customer] select control should be loaded from the relative URL: "/CustomerService/customer" (HTTP-GET) The data source for the [Event] select control should be loaded from the relative URL: "/SportService/event" (HTTP-GET) An existing EventRegistration entity should be loaded from the relative URL: "/CustomerService/eventregistration/{id}" (HTTP-GET) If a new EventRegistration entity has been created, the new entity should be posted to the relative URL: "/CustomerService/eventregistration" (HTTP-POST) If an existing EventRegistration entity has been updated, the modified entity should be sent to the relative URL: "/CustomerService/eventregistration/{id}" (HTTP-PUT) If an existing EventRegistration entity has to be deleted, the following relative URL should be called: "/CustomerService/eventregistration/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum