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