Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
FoodOrderView
Please create a React-JS view called "FoodOrderView" for the fields of the FoodOrder entity. The FoodOrderView must contain the following fields: - name: FoodOrderDate type: DATE - name: ExternalPerson type: ExternalPerson - name: Food type: Food - name: Teacher type: Teacher - name: Student type: Student The data source for the [ExternalPerson] select control should be loaded from the relative URL: "/ExternalPersonService/externalperson" (HTTP-GET) The data source for the [Teacher] select control should be loaded from the relative URL: "/StudentService/teacher" (HTTP-GET) The data source for the [Student] select control should be loaded from the relative URL: "/StudentService/student" (HTTP-GET) The data source for the [Food] select control should be loaded from the relative URL: "/FoodService/food" (HTTP-GET) An existing FoodOrder entity should be loaded from the relative URL: "/FoodService/foodorder/{id}" (HTTP-GET) If a new FoodOrder entity has been created, the new entity should be posted to the relative URL: "/FoodService/foodorder" (HTTP-POST) If an existing FoodOrder entity has been updated, the modified entity should be sent to the relative URL: "/FoodService/foodorder/{id}" (HTTP-PUT) If an existing FoodOrder entity has to be deleted, the following relative URL should be called: "/FoodService/foodorder/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum