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