Overview
Summary
Contact
Donate
Imprint
Prompt for the
ServiceOutageView
Please create a React-JS view called "ServiceOutageView" for the fields of the ServiceOutage entity. The ServiceOutageView must contain the following fields: - name: Description type: STRING - name: EndDate type: DATE - name: ImpactDescription type: STRING - name: ServiceSupply type: ServiceSupply - name: StartDate type: DATE The data source for the [ServiceSupply] select control should be loaded from the relative URL: "/ServiceSupplyService/servicesupply" (HTTP-GET) An existing ServiceOutage entity should be loaded from the relative URL: "/ServiceSupplyService/serviceoutage/{id}" (HTTP-GET) If a new ServiceOutage entity has been created, the new entity should be posted to the relative URL: "/ServiceSupplyService/serviceoutage" (HTTP-POST) If an existing ServiceOutage entity has been updated, the modified entity should be sent to the relative URL: "/ServiceSupplyService/serviceoutage/{id}" (HTTP-PUT) If an existing ServiceOutage entity has to be deleted, the following relative URL should be called: "/ServiceSupplyService/serviceoutage/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint