Overview
Summary
Contact
Donate
Imprint
Prompt for the
FundingRoundApp
Please create a React-JS application for the FundingRoundModule. The application has to offer the following views for the user interface: 1. EquityStakeView 2. FundingRoundView 3. FundingRoundInvestorView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 3 views are defined below. 1. 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) 2. The FundingRoundView must contain the following fields: - name: AmountUsdMillions type: STRING - name: Company type: Company - name: Notes type: STRING - name: PreMoneyValuationUsdMillions type: STRING - name: RoundDate type: DATE - name: RoundType type: STRING 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: "/FundingRoundService/fundinground/{id}" (HTTP-GET) If a new FundingRound entity has been created, the new entity should be posted to the relative URL: "/FundingRoundService/fundinground" (HTTP-POST) If an existing FundingRound entity has been updated, the modified entity should be sent to the relative URL: "/FundingRoundService/fundinground/{id}" (HTTP-PUT) If an existing FundingRound entity has to be deleted, the following relative URL should be called: "/FundingRoundService/fundinground/{id}" (HTTP-DELETE) Add a HTML table to the view with the following FundingRoundInvestor columns: - column: InvestorCompany - column: FundingRound - column: InvestorRole The table should have the title "FundingRoundInvestors" und the data must be loaded from the server with the following relative URL: "/FundingRoundService/fundingroundinvestor/fundinground/{id}" 3. The FundingRoundInvestorView must contain the following fields: - name: FundingRound type: FundingRound - name: InvestorCompany type: Company - name: InvestorRole type: STRING The data source for the [FundingRound] select control should be loaded from the relative URL: "/FundingRoundService/fundinground" (HTTP-GET) The data source for the [InvestorCompany] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) An existing FundingRoundInvestor entity should be loaded from the relative URL: "/FundingRoundService/fundingroundinvestor/{id}" (HTTP-GET) If a new FundingRoundInvestor entity has been created, the new entity should be posted to the relative URL: "/FundingRoundService/fundingroundinvestor" (HTTP-POST) If an existing FundingRoundInvestor entity has been updated, the modified entity should be sent to the relative URL: "/FundingRoundService/fundingroundinvestor/{id}" (HTTP-PUT) If an existing FundingRoundInvestor entity has to be deleted, the following relative URL should be called: "/FundingRoundService/fundingroundinvestor/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint