Overview
Summary
Contact
Donate
Imprint
Prompt for the
EducationView
Please create a React-JS view called "EducationView" for the fields of the Education entity. The EducationView must contain the following fields: - name: Activities type: STRING - name: Degree type: STRING - name: Description type: STRING - name: EndDate type: DATE - name: FieldOfStudy type: STRING - name: Grade type: STRING - name: School type: School - name: StartDate type: DATE - name: User type: UserAccount The data source for the [School] select control should be loaded from the relative URL: "/SchoolService/school" (HTTP-GET) The data source for the [User] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing Education entity should be loaded from the relative URL: "/SchoolService/education/{id}" (HTTP-GET) If a new Education entity has been created, the new entity should be posted to the relative URL: "/SchoolService/education" (HTTP-POST) If an existing Education entity has been updated, the modified entity should be sent to the relative URL: "/SchoolService/education/{id}" (HTTP-PUT) If an existing Education entity has to be deleted, the following relative URL should be called: "/SchoolService/education/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint