Overview
Summary
Contact
Donate
Imprint
Prompt for the
MarketMakerView
Please create a React-JS view called "MarketMakerView" for the fields of the MarketMaker entity. The MarketMakerView must contain the following fields: - name: Country type: Country - name: IsNasdaqMember type: BOOL - name: Name type: STRING - name: Regulator type: Regulator The data source for the [Country] select control should be loaded from the relative URL: "/ExchangeService/country" (HTTP-GET) The data source for the [Regulator] select control should be loaded from the relative URL: "/RegulatorService/regulator" (HTTP-GET) An existing MarketMaker entity should be loaded from the relative URL: "/RegulatorService/marketmaker/{id}" (HTTP-GET) If a new MarketMaker entity has been created, the new entity should be posted to the relative URL: "/RegulatorService/marketmaker" (HTTP-POST) If an existing MarketMaker entity has been updated, the modified entity should be sent to the relative URL: "/RegulatorService/marketmaker/{id}" (HTTP-PUT) If an existing MarketMaker entity has to be deleted, the following relative URL should be called: "/RegulatorService/marketmaker/{id}" (HTTP-DELETE) Add a HTML table to the view with the following MarketMakerQuotePermission columns: - column: MarketMaker - column: EffectiveTo - column: EffectiveFrom - column: Exchange - column: QuoteLevel The table should have the title "MarketMakerQuotePermissions" und the data must be loaded from the server with the following relative URL: "/QuoteLevelService/marketmakerquotepermission/marketmaker/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint