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