Overview
Summary
Contact
Donate
Imprint
Prompt for the
RegulatoryLicenseView
Please create a React-JS view called "RegulatoryLicenseView" for the fields of the RegulatoryLicense entity. The RegulatoryLicenseView must contain the following fields: - name: AuthorityName type: STRING - name: Country type: Country - name: ExpiresAt type: DATE - name: IssuedAt type: DATE - name: LicenseNumber type: STRING - name: LicenseType type: STRING - name: Region type: Region - name: Status type: STRING The data source for the [Country] select control should be loaded from the relative URL: "/CountryService/country" (HTTP-GET) The data source for the [Region] select control should be loaded from the relative URL: "/RegionService/region" (HTTP-GET) An existing RegulatoryLicense entity should be loaded from the relative URL: "/RegionService/regulatorylicense/{id}" (HTTP-GET) If a new RegulatoryLicense entity has been created, the new entity should be posted to the relative URL: "/RegionService/regulatorylicense" (HTTP-POST) If an existing RegulatoryLicense entity has been updated, the modified entity should be sent to the relative URL: "/RegionService/regulatorylicense/{id}" (HTTP-PUT) If an existing RegulatoryLicense entity has to be deleted, the following relative URL should be called: "/RegionService/regulatorylicense/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint