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: Description type: STRING - name: FilingDate type: DATE - name: GrantDate type: DATE - name: Inventor type: Person - name: Number type: STRING - name: Title type: STRING The data source for the [Inventor] select control should be loaded from the relative URL: "/PersonService/person" (HTTP-GET) An existing Patent entity should be loaded from the relative URL: "/PersonService/patent/{id}" (HTTP-GET) If a new Patent entity has been created, the new entity should be posted to the relative URL: "/PersonService/patent" (HTTP-POST) If an existing Patent entity has been updated, the modified entity should be sent to the relative URL: "/PersonService/patent/{id}" (HTTP-PUT) If an existing Patent entity has to be deleted, the following relative URL should be called: "/PersonService/patent/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint