Overview
Summary
Contact
Donate
Imprint
Prompt for the
MarketTierView
Please create a React-JS view called "MarketTierView" for the fields of the MarketTier entity. The MarketTierView must contain the following fields: - name: Code type: STRING - name: Description type: STRING - name: Exchange type: Exchange - name: MinMarketCapUsd type: DOUBLE - name: MinPublicFloatPercent type: DOUBLE - name: MinShareholders type: INT - name: Name type: STRING The data source for the [Exchange] select control should be loaded from the relative URL: "/ExchangeService/exchange" (HTTP-GET) An existing MarketTier entity should be loaded from the relative URL: "/MarketTierService/markettier/{id}" (HTTP-GET) If a new MarketTier entity has been created, the new entity should be posted to the relative URL: "/MarketTierService/markettier" (HTTP-POST) If an existing MarketTier entity has been updated, the modified entity should be sent to the relative URL: "/MarketTierService/markettier/{id}" (HTTP-PUT) If an existing MarketTier entity has to be deleted, the following relative URL should be called: "/MarketTierService/markettier/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Listing columns: - column: Company - column: Currency - column: IsPrimary - column: Status - column: TickerSymbol - column: MarketTier - column: ListingDate - column: Exchange The table should have the title "Listings" und the data must be loaded from the server with the following relative URL: "/ListingService/listing/markettier/{id}" Add a HTML table to the view with the following ListingFeeSchedule columns: - column: MinFeeUsd - column: EffectiveFrom - column: Exchange - column: EffectiveTo - column: ForAcquisitionCompanies - column: MarketTier - column: MaxFeeUsd The table should have the title "ListingFeeSchedules" und the data must be loaded from the server with the following relative URL: "/MarketTierService/listingfeeschedule/markettier/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint