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