Overview
Summary
Contact
Donate
Imprint
Prompt for the
EquityStakeView
Please create a React-JS view called "EquityStakeView" for the fields of the EquityStake entity. The EquityStakeView must contain the following fields: - name: AcquisitionDate type: DATE - name: ExitDate type: DATE - name: InvestorCompany type: Company - name: Notes type: STRING - name: StakePercent type: STRING - name: StakeValueUsdMillions type: STRING - name: TargetCompany type: Company The data source for the [TargetCompany] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) The data source for the [InvestorCompany] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) An existing EquityStake entity should be loaded from the relative URL: "/FundingRoundService/equitystake/{id}" (HTTP-GET) If a new EquityStake entity has been created, the new entity should be posted to the relative URL: "/FundingRoundService/equitystake" (HTTP-POST) If an existing EquityStake entity has been updated, the modified entity should be sent to the relative URL: "/FundingRoundService/equitystake/{id}" (HTTP-PUT) If an existing EquityStake entity has to be deleted, the following relative URL should be called: "/FundingRoundService/equitystake/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint