Overview
Summary
Contact
Donate
Imprint
Prompt for the
CompanyRoleView
Please create a React-JS view called "CompanyRoleView" for the fields of the CompanyRole entity. The CompanyRoleView must contain the following fields: - name: Company type: Company - name: EndDate type: DATE - name: Person type: Person - name: RoleType type: STRING - name: StartDate type: DATE - name: Title type: STRING 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 CompanyRole entity should be loaded from the relative URL: "/PersonService/companyrole/{id}" (HTTP-GET) If a new CompanyRole entity has been created, the new entity should be posted to the relative URL: "/PersonService/companyrole" (HTTP-POST) If an existing CompanyRole entity has been updated, the modified entity should be sent to the relative URL: "/PersonService/companyrole/{id}" (HTTP-PUT) If an existing CompanyRole entity has to be deleted, the following relative URL should be called: "/PersonService/companyrole/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint