Overview
Summary
Contact
Donate
Imprint
Prompt for the
CovidImpactView
Please create a React-JS view called "CovidImpactView" for the fields of the CovidImpact entity. The CovidImpactView must contain the following fields: - name: Company type: Company - name: Currency type: STRING - name: Market type: Market - name: MetricType type: STRING - name: Notes type: STRING - name: PeriodEnd type: DATE - name: PeriodStart type: DATE - name: Value type: DOUBLE The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) The data source for the [Market] select control should be loaded from the relative URL: "/MarketService/market" (HTTP-GET) An existing CovidImpact entity should be loaded from the relative URL: "/MarketService/covidimpact/{id}" (HTTP-GET) If a new CovidImpact entity has been created, the new entity should be posted to the relative URL: "/MarketService/covidimpact" (HTTP-POST) If an existing CovidImpact entity has been updated, the modified entity should be sent to the relative URL: "/MarketService/covidimpact/{id}" (HTTP-PUT) If an existing CovidImpact entity has to be deleted, the following relative URL should be called: "/MarketService/covidimpact/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint