Overview
Summary
Contact
Donate
Imprint
Prompt for the
LegalActionView
Please create a React-JS view called "LegalActionView" for the fields of the LegalAction entity. The LegalActionView must contain the following fields: - name: ActionDate type: DATE - name: ActionType type: STRING - name: Description type: STRING - name: Exchange type: Exchange - 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 LegalAction entity should be loaded from the relative URL: "/RegulatorService/legalaction/{id}" (HTTP-GET) If a new LegalAction entity has been created, the new entity should be posted to the relative URL: "/RegulatorService/legalaction" (HTTP-POST) If an existing LegalAction entity has been updated, the modified entity should be sent to the relative URL: "/RegulatorService/legalaction/{id}" (HTTP-PUT) If an existing LegalAction entity has to be deleted, the following relative URL should be called: "/RegulatorService/legalaction/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint