Overview
Summary
Contact
Donate
Imprint
Prompt for the
ServiceRegionView
Please create a React-JS view called "ServiceRegionView" for the fields of the ServiceRegion entity. The ServiceRegionView must contain the following fields: - name: City type: City - name: Country type: Country - name: EndDate type: DATE - name: Notes type: STRING - name: Service type: Service - name: StartDate type: DATE The data source for the [Country] select control should be loaded from the relative URL: "/CityService/country" (HTTP-GET) The data source for the [Service] select control should be loaded from the relative URL: "/CompanyService/service" (HTTP-GET) The data source for the [City] select control should be loaded from the relative URL: "/CityService/city" (HTTP-GET) An existing ServiceRegion entity should be loaded from the relative URL: "/CompanyService/serviceregion/{id}" (HTTP-GET) If a new ServiceRegion entity has been created, the new entity should be posted to the relative URL: "/CompanyService/serviceregion" (HTTP-POST) If an existing ServiceRegion entity has been updated, the modified entity should be sent to the relative URL: "/CompanyService/serviceregion/{id}" (HTTP-PUT) If an existing ServiceRegion entity has to be deleted, the following relative URL should be called: "/CompanyService/serviceregion/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint