Overview
Summary
Contact
Donate
Imprint
Prompt for the
UserSkillView
Please create a React-JS view called "UserSkillView" for the fields of the UserSkill entity. The UserSkillView must contain the following fields: - name: IsPrimary type: BOOL - name: ProficiencyLevel type: STRING - name: Skill type: Skill - name: User type: UserAccount - name: YearsOfExperience type: INT The data source for the [Skill] select control should be loaded from the relative URL: "/SkillService/skill" (HTTP-GET) The data source for the [User] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing UserSkill entity should be loaded from the relative URL: "/SkillService/userskill/{id}" (HTTP-GET) If a new UserSkill entity has been created, the new entity should be posted to the relative URL: "/SkillService/userskill" (HTTP-POST) If an existing UserSkill entity has been updated, the modified entity should be sent to the relative URL: "/SkillService/userskill/{id}" (HTTP-PUT) If an existing UserSkill entity has to be deleted, the following relative URL should be called: "/SkillService/userskill/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint