Overview
Summary
Contact
Donate
Imprint
Prompt for the
OwnershipView
Please create a React-JS view called "OwnershipView" for the fields of the Ownership entity. The OwnershipView must contain the following fields: - name: EndDate type: DATE - name: OwnershipType type: STRING - name: ParentCompany type: Company - name: StartDate type: DATE - name: SubsidiaryCompany type: Company The data source for the [ParentCompany] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) The data source for the [SubsidiaryCompany] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) An existing Ownership entity should be loaded from the relative URL: "/MarketTierService/ownership/{id}" (HTTP-GET) If a new Ownership entity has been created, the new entity should be posted to the relative URL: "/MarketTierService/ownership" (HTTP-POST) If an existing Ownership entity has been updated, the modified entity should be sent to the relative URL: "/MarketTierService/ownership/{id}" (HTTP-PUT) If an existing Ownership entity has to be deleted, the following relative URL should be called: "/MarketTierService/ownership/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint