Overview
Summary
Contact
Donate
Imprint
Prompt for the
ServiceView
Please create a React-JS view called "ServiceView" for the fields of the Service entity. The ServiceView must contain the following fields: - name: Description type: STRING - name: LaunchDate type: DATE - name: Name type: STRING - name: OwnerCompany type: Company - name: Type type: STRING The data source for the [OwnerCompany] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) An existing Service entity should be loaded from the relative URL: "/ServiceService/service/{id}" (HTTP-GET) If a new Service entity has been created, the new entity should be posted to the relative URL: "/ServiceService/service" (HTTP-POST) If an existing Service entity has been updated, the modified entity should be sent to the relative URL: "/ServiceService/service/{id}" (HTTP-PUT) If an existing Service entity has to be deleted, the following relative URL should be called: "/ServiceService/service/{id}" (HTTP-DELETE) Add a HTML table to the view with the following TerritoryAvailability columns: - column: Country - column: AvailableTo - column: Notes - column: AvailableFrom - column: Service The table should have the title "TerritoryAvailabilitys" und the data must be loaded from the server with the following relative URL: "/ServiceService/territoryavailability/service/{id}" Add a HTML table to the view with the following Brand columns: - column: EndDate - column: StartDate - column: Name - column: LogoUrl - column: Service The table should have the title "Brands" und the data must be loaded from the server with the following relative URL: "/ServiceService/brand/service/{id}" Add a HTML table to the view with the following BundleService columns: - column: Bundle - column: Service The table should have the title "BundleServices" und the data must be loaded from the server with the following relative URL: "/BundleService/bundleservice/service/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint