Overview
Summary
Contact
Donate
Imprint
Prompt for the
StockOwnershipView
Please create a React-JS view called "StockOwnershipView" for the fields of the StockOwnership entity. The StockOwnershipView must contain the following fields: - name: AsOfDate type: DATE - name: Company type: Company - name: Notes type: STRING - name: OwnershipPercent type: DOUBLE - name: OwnerType type: STRING - name: Person type: Person The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) The data source for the [Person] select control should be loaded from the relative URL: "/CompanyService/person" (HTTP-GET) An existing StockOwnership entity should be loaded from the relative URL: "/RoleService/stockownership/{id}" (HTTP-GET) If a new StockOwnership entity has been created, the new entity should be posted to the relative URL: "/RoleService/stockownership" (HTTP-POST) If an existing StockOwnership entity has been updated, the modified entity should be sent to the relative URL: "/RoleService/stockownership/{id}" (HTTP-PUT) If an existing StockOwnership entity has to be deleted, the following relative URL should be called: "/RoleService/stockownership/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint