Overview
Summary
Contact
Donate
Imprint
Prompt for the
EnrollmentView
Please create a React-JS view called "EnrollmentView" for the fields of the Enrollment entity. The EnrollmentView must contain the following fields: - name: CompletedAt type: DATE - name: Course type: Course - name: EnrolledAt type: DATE - name: ProgressPercent type: DOUBLE - name: Status type: STRING - name: User type: UserAccount The data source for the [User] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) The data source for the [Course] select control should be loaded from the relative URL: "/CompanyService/course" (HTTP-GET) An existing Enrollment entity should be loaded from the relative URL: "/SkillService/enrollment/{id}" (HTTP-GET) If a new Enrollment entity has been created, the new entity should be posted to the relative URL: "/SkillService/enrollment" (HTTP-POST) If an existing Enrollment entity has been updated, the modified entity should be sent to the relative URL: "/SkillService/enrollment/{id}" (HTTP-PUT) If an existing Enrollment entity has to be deleted, the following relative URL should be called: "/SkillService/enrollment/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint