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