Overview
Summary
Contact
Donate
Imprint
Prompt for the
InvestmentRoundView
Please create a React-JS view called "InvestmentRoundView" for the fields of the InvestmentRound entity. The InvestmentRoundView must contain the following fields: - name: AmountEur type: DOUBLE - name: AmountUsd type: DOUBLE - name: AnnouncedOn type: DATE - name: CompanyEntity type: CompanyEntity - name: IsDebt type: BOOL - name: RoundName type: STRING The data source for the [CompanyEntity] select control should be loaded from the relative URL: "/CompanyEntityService/companyentity" (HTTP-GET) An existing InvestmentRound entity should be loaded from the relative URL: "/CompanyEntityService/investmentround/{id}" (HTTP-GET) If a new InvestmentRound entity has been created, the new entity should be posted to the relative URL: "/CompanyEntityService/investmentround" (HTTP-POST) If an existing InvestmentRound entity has been updated, the modified entity should be sent to the relative URL: "/CompanyEntityService/investmentround/{id}" (HTTP-PUT) If an existing InvestmentRound entity has to be deleted, the following relative URL should be called: "/CompanyEntityService/investmentround/{id}" (HTTP-DELETE) Add a HTML table to the view with the following InvestmentRoundInvestor columns: - column: Investor - column: InvestmentRound - column: OwnershipPercent The table should have the title "InvestmentRoundInvestors" und the data must be loaded from the server with the following relative URL: "/CountryService/investmentroundinvestor/investmentround/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint