Overview
Summary
Contact
Donate
Imprint
Prompt for the
FinancialStatementView
Please create a React-JS view called "FinancialStatementView" for the fields of the FinancialStatement entity. The FinancialStatementView must contain the following fields: - name: Company type: Company - name: Employees type: INT - name: FiscalYear type: INT - name: NetIncome type: DOUBLE - name: OperatingIncome type: DOUBLE - name: Revenue type: DOUBLE - name: TotalAssets type: DOUBLE - name: TotalEquity type: DOUBLE The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) An existing FinancialStatement entity should be loaded from the relative URL: "/PersonService/financialstatement/{id}" (HTTP-GET) If a new FinancialStatement entity has been created, the new entity should be posted to the relative URL: "/PersonService/financialstatement" (HTTP-POST) If an existing FinancialStatement entity has been updated, the modified entity should be sent to the relative URL: "/PersonService/financialstatement/{id}" (HTTP-PUT) If an existing FinancialStatement entity has to be deleted, the following relative URL should be called: "/PersonService/financialstatement/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint