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. FundingRoundView 2. FundingRoundInvestorView 3. InvestorView 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 FundingRoundView must contain the following fields: - name: AmountUsd type: DOUBLE - name: AnnouncementDate type: DATE - name: Company type: Company - name: LeadInvestor type: LONG - name: RoundType type: STRING - name: SourceReference 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: Investor - column: FundingRound 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}" 2. The FundingRoundInvestorView must contain the following fields: - name: FundingRound type: FundingRound - name: Investor type: Investor The data source for the [FundingRound] select control should be loaded from the relative URL: "/FundingRoundService/fundinground" (HTTP-GET) The data source for the [Investor] select control should be loaded from the relative URL: "/FundingRoundService/investor" (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) 3. The InvestorView must contain the following fields: - name: Country type: Country - name: InvestorType type: STRING - name: Name type: STRING - name: Website type: STRING The data source for the [Country] select control should be loaded from the relative URL: "/CountryService/country" (HTTP-GET) An existing Investor entity should be loaded from the relative URL: "/FundingRoundService/investor/{id}" (HTTP-GET) If a new Investor entity has been created, the new entity should be posted to the relative URL: "/FundingRoundService/investor" (HTTP-POST) If an existing Investor entity has been updated, the modified entity should be sent to the relative URL: "/FundingRoundService/investor/{id}" (HTTP-PUT) If an existing Investor entity has to be deleted, the following relative URL should be called: "/FundingRoundService/investor/{id}" (HTTP-DELETE) Add a HTML table to the view with the following FundingRoundInvestor columns: - column: Investor - column: FundingRound The table should have the title "FundingRoundInvestors" und the data must be loaded from the server with the following relative URL: "/FundingRoundService/fundingroundinvestor/investor/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint