Overview
Summary
Contact
Donate
Imprint
Prompt for the
FinancialYearView
Please create a React-JS view called "FinancialYearView" for the fields of the FinancialYear entity. The FinancialYearView must contain the following fields: - name: Company type: Company - name: EmployeesCount type: LONG - name: NetIncomeUsdMillion type: STRING - name: RevenueUsdMillion type: STRING - name: SharePriceUsd type: STRING - name: TotalAssetsUsdMillion type: STRING - name: Year type: LONG The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) An existing FinancialYear entity should be loaded from the relative URL: "/CompanyService/financialyear/{id}" (HTTP-GET) If a new FinancialYear entity has been created, the new entity should be posted to the relative URL: "/CompanyService/financialyear" (HTTP-POST) If an existing FinancialYear entity has been updated, the modified entity should be sent to the relative URL: "/CompanyService/financialyear/{id}" (HTTP-PUT) If an existing FinancialYear entity has to be deleted, the following relative URL should be called: "/CompanyService/financialyear/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint