Overview
Summary
Contact
Donate
Imprint
Prompt for the
LicenseAgreementView
Please create a React-JS view called "LicenseAgreementView" for the fields of the LicenseAgreement entity. The LicenseAgreementView must contain the following fields: - name: IsExclusive type: BOOL - name: LicenseEnd type: DATE - name: LicenseStart type: DATE - name: LicensorCompany type: Company - name: TerritoryScope type: STRING - name: Title type: Title The data source for the [LicensorCompany] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) The data source for the [Title] select control should be loaded from the relative URL: "/TitleService/title" (HTTP-GET) An existing LicenseAgreement entity should be loaded from the relative URL: "/CompanyService/licenseagreement/{id}" (HTTP-GET) If a new LicenseAgreement entity has been created, the new entity should be posted to the relative URL: "/CompanyService/licenseagreement" (HTTP-POST) If an existing LicenseAgreement entity has been updated, the modified entity should be sent to the relative URL: "/CompanyService/licenseagreement/{id}" (HTTP-PUT) If an existing LicenseAgreement entity has to be deleted, the following relative URL should be called: "/CompanyService/licenseagreement/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint