Overview
Summary
Contact
Donate
Imprint
Prompt for the
TradingSessionView
Please create a React-JS view called "TradingSessionView" for the fields of the TradingSession entity. The TradingSessionView must contain the following fields: - name: EndTimeLocal type: STRING - name: Exchange type: Exchange - name: IsExtendedHours type: BOOL - name: Name type: STRING - name: SessionType type: STRING - name: StartTimeLocal type: STRING - name: TimeZone type: STRING The data source for the [Exchange] select control should be loaded from the relative URL: "/ExchangeService/exchange" (HTTP-GET) An existing TradingSession entity should be loaded from the relative URL: "/ListingService/tradingsession/{id}" (HTTP-GET) If a new TradingSession entity has been created, the new entity should be posted to the relative URL: "/ListingService/tradingsession" (HTTP-POST) If an existing TradingSession entity has been updated, the modified entity should be sent to the relative URL: "/ListingService/tradingsession/{id}" (HTTP-PUT) If an existing TradingSession entity has to be deleted, the following relative URL should be called: "/ListingService/tradingsession/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint