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