Overview
Summary
Contact
Donate
Imprint
Prompt for the
RegulatoryAuthorityView
Please create a React-JS view called "RegulatoryAuthorityView" for the fields of the RegulatoryAuthority entity. The RegulatoryAuthorityView must contain the following fields: - name: Country type: Country - name: Name type: STRING - name: Website type: STRING The data source for the [Country] select control should be loaded from the relative URL: "/CountryService/country" (HTTP-GET) An existing RegulatoryAuthority entity should be loaded from the relative URL: "/CountryService/regulatoryauthority/{id}" (HTTP-GET) If a new RegulatoryAuthority entity has been created, the new entity should be posted to the relative URL: "/CountryService/regulatoryauthority" (HTTP-POST) If an existing RegulatoryAuthority entity has been updated, the modified entity should be sent to the relative URL: "/CountryService/regulatoryauthority/{id}" (HTTP-PUT) If an existing RegulatoryAuthority entity has to be deleted, the following relative URL should be called: "/CountryService/regulatoryauthority/{id}" (HTTP-DELETE) Add a HTML table to the view with the following RegulatoryApproval columns: - column: ApprovalDate - column: Notes - column: Project - column: ExpiryDate - column: RegulatoryAuthority - column: ServiceArea The table should have the title "RegulatoryApprovals" und the data must be loaded from the server with the following relative URL: "/CountryService/regulatoryapproval/regulatoryauthority/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint