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