Overview
Summary
Contact
Donate
Imprint
Prompt for the
SubsidiaryView
Please create a React-JS view called "SubsidiaryView" for the fields of the Subsidiary entity. The SubsidiaryView must contain the following fields: - name: AcquisitionDate type: DATE - name: Company type: Company - name: Country type: STRING - name: Description type: STRING - name: DivestitureDate type: DATE - name: Name type: STRING - name: OwnershipPercentage type: STRING - name: Status type: STRING The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) An existing Subsidiary entity should be loaded from the relative URL: "/CompanyService/subsidiary/{id}" (HTTP-GET) If a new Subsidiary entity has been created, the new entity should be posted to the relative URL: "/CompanyService/subsidiary" (HTTP-POST) If an existing Subsidiary entity has been updated, the modified entity should be sent to the relative URL: "/CompanyService/subsidiary/{id}" (HTTP-PUT) If an existing Subsidiary entity has to be deleted, the following relative URL should be called: "/CompanyService/subsidiary/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint