Overview
Summary
Contact
Donate
Imprint
Prompt for the
RestaurantTableView
Please create a React-JS view called "RestaurantTableView" for the fields of the RestaurantTable entity. The RestaurantTableView must contain the following fields: - name: Capacity type: INT - name: Restaurant type: Restaurant - name: TableNumber type: STRING The data source for the [Restaurant] select control should be loaded from the relative URL: "/RestaurantService/restaurant" (HTTP-GET) An existing RestaurantTable entity should be loaded from the relative URL: "/RestaurantService/restauranttable/{id}" (HTTP-GET) If a new RestaurantTable entity has been created, the new entity should be posted to the relative URL: "/RestaurantService/restauranttable" (HTTP-POST) If an existing RestaurantTable entity has been updated, the modified entity should be sent to the relative URL: "/RestaurantService/restauranttable/{id}" (HTTP-PUT) If an existing RestaurantTable entity has to be deleted, the following relative URL should be called: "/RestaurantService/restauranttable/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint