Overview
Summary
Contact
Donate
Imprint
Prompt for the
RegulatorView
Please create a React-JS view called "RegulatorView" for the fields of the Regulator entity. The RegulatorView must contain the following fields: - name: Country type: Country - name: Name type: STRING - name: Type type: STRING - name: Website type: STRING The data source for the [Country] select control should be loaded from the relative URL: "/ExchangeService/country" (HTTP-GET) An existing Regulator entity should be loaded from the relative URL: "/RegulatorService/regulator/{id}" (HTTP-GET) If a new Regulator entity has been created, the new entity should be posted to the relative URL: "/RegulatorService/regulator" (HTTP-POST) If an existing Regulator entity has been updated, the modified entity should be sent to the relative URL: "/RegulatorService/regulator/{id}" (HTTP-PUT) If an existing Regulator entity has to be deleted, the following relative URL should be called: "/RegulatorService/regulator/{id}" (HTTP-DELETE) Add a HTML table to the view with the following LegalAction columns: - column: Exchange - column: ActionDate - column: ActionType - column: Description - column: Regulator The table should have the title "LegalActions" und the data must be loaded from the server with the following relative URL: "/RegulatorService/legalaction/regulator/{id}" Add a HTML table to the view with the following MarketMaker columns: - column: Regulator - column: Name - column: IsNasdaqMember - column: Country The table should have the title "MarketMakers" und the data must be loaded from the server with the following relative URL: "/RegulatorService/marketmaker/regulator/{id}" Add a HTML table to the view with the following Inspection columns: - column: InspectionDate - column: IsAntitrustRelated - column: Description - column: Regulator - column: Exchange The table should have the title "Inspections" und the data must be loaded from the server with the following relative URL: "/ExchangeService/inspection/regulator/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint