Overview
Summary
Contact
Donate
Imprint
Prompt for the
StockMarketEventView
Please create a React-JS view called "StockMarketEventView" for the fields of the StockMarketEvent entity. The StockMarketEventView must contain the following fields: - name: AmountMillionUsd type: DOUBLE - name: Company type: Company - name: Description type: STRING - name: EventDate type: DATE - name: EventType type: STRING - name: SharePriceUsd type: DOUBLE The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) An existing StockMarketEvent entity should be loaded from the relative URL: "/CompanyService/stockmarketevent/{id}" (HTTP-GET) If a new StockMarketEvent entity has been created, the new entity should be posted to the relative URL: "/CompanyService/stockmarketevent" (HTTP-POST) If an existing StockMarketEvent entity has been updated, the modified entity should be sent to the relative URL: "/CompanyService/stockmarketevent/{id}" (HTTP-PUT) If an existing StockMarketEvent entity has to be deleted, the following relative URL should be called: "/CompanyService/stockmarketevent/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint