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