Overview
Summary
Contact
Donate
Imprint
Prompt for the
RegulatoryEventView
Please create a React-JS view called "RegulatoryEventView" for the fields of the RegulatoryEvent entity. The RegulatoryEventView must contain the following fields: - name: Company type: Company - name: Country type: Country - name: Description type: STRING - name: EventDate type: DATE - name: Name type: STRING The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) The data source for the [Country] select control should be loaded from the relative URL: "/CountryService/country" (HTTP-GET) An existing RegulatoryEvent entity should be loaded from the relative URL: "/CompanyService/regulatoryevent/{id}" (HTTP-GET) If a new RegulatoryEvent entity has been created, the new entity should be posted to the relative URL: "/CompanyService/regulatoryevent" (HTTP-POST) If an existing RegulatoryEvent entity has been updated, the modified entity should be sent to the relative URL: "/CompanyService/regulatoryevent/{id}" (HTTP-PUT) If an existing RegulatoryEvent entity has to be deleted, the following relative URL should be called: "/CompanyService/regulatoryevent/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint