Overview
Summary
Contact
Donate
Imprint
Prompt for the
InspectionView
Please create a React-JS view called "InspectionView" for the fields of the Inspection entity. The InspectionView must contain the following fields: - name: Description type: STRING - name: Exchange type: Exchange - name: InspectionDate type: DATE - name: IsAntitrustRelated type: BOOL - name: Regulator type: Regulator The data source for the [Exchange] select control should be loaded from the relative URL: "/ExchangeService/exchange" (HTTP-GET) The data source for the [Regulator] select control should be loaded from the relative URL: "/RegulatorService/regulator" (HTTP-GET) An existing Inspection entity should be loaded from the relative URL: "/ExchangeService/inspection/{id}" (HTTP-GET) If a new Inspection entity has been created, the new entity should be posted to the relative URL: "/ExchangeService/inspection" (HTTP-POST) If an existing Inspection entity has been updated, the modified entity should be sent to the relative URL: "/ExchangeService/inspection/{id}" (HTTP-PUT) If an existing Inspection entity has to be deleted, the following relative URL should be called: "/ExchangeService/inspection/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint