Overview
Summary
Contact
Donate
Imprint
Prompt for the
QuoteLevelView
Please create a React-JS view called "QuoteLevelView" for the fields of the QuoteLevel entity. The QuoteLevelView must contain the following fields: - name: Description type: STRING - name: Exchange type: Exchange - name: IsForMarketMakers type: BOOL - name: LevelNumber type: INT The data source for the [Exchange] select control should be loaded from the relative URL: "/ExchangeService/exchange" (HTTP-GET) An existing QuoteLevel entity should be loaded from the relative URL: "/QuoteLevelService/quotelevel/{id}" (HTTP-GET) If a new QuoteLevel entity has been created, the new entity should be posted to the relative URL: "/QuoteLevelService/quotelevel" (HTTP-POST) If an existing QuoteLevel entity has been updated, the modified entity should be sent to the relative URL: "/QuoteLevelService/quotelevel/{id}" (HTTP-PUT) If an existing QuoteLevel entity has to be deleted, the following relative URL should be called: "/QuoteLevelService/quotelevel/{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/quotelevel/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint