Overview
Summary
Contact
Donate
Imprint
Prompt for the
PartnerView
Please create a React-JS view called "PartnerView" for the fields of the Partner entity. The PartnerView must contain the following fields: - name: CertificationDate type: DATE - name: Company type: Company - name: Description type: STRING - name: IsCertified type: BOOL - name: PartnerType type: STRING The data source for the [Company] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) An existing Partner entity should be loaded from the relative URL: "/PartnerService/partner/{id}" (HTTP-GET) If a new Partner entity has been created, the new entity should be posted to the relative URL: "/PartnerService/partner" (HTTP-POST) If an existing Partner entity has been updated, the modified entity should be sent to the relative URL: "/PartnerService/partner/{id}" (HTTP-PUT) If an existing Partner entity has to be deleted, the following relative URL should be called: "/PartnerService/partner/{id}" (HTTP-DELETE) Add a HTML table to the view with the following PartnerServiceOffering columns: - column: Partner - column: PartnerService The table should have the title "PartnerServiceOfferings" und the data must be loaded from the server with the following relative URL: "/PartnerService/partnerserviceoffering/partner/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint