Overview
Summary
Contact
Donate
Imprint
Prompt for the
SchoolView
Please create a React-JS view called "SchoolView" for the fields of the School entity. The SchoolView must contain the following fields: - name: City type: STRING - name: Country type: STRING - name: LogoUrl type: STRING - name: Name type: STRING - name: Type type: STRING - name: WebsiteUrl type: STRING An existing School entity should be loaded from the relative URL: "/SchoolService/school/{id}" (HTTP-GET) If a new School entity has been created, the new entity should be posted to the relative URL: "/SchoolService/school" (HTTP-POST) If an existing School entity has been updated, the modified entity should be sent to the relative URL: "/SchoolService/school/{id}" (HTTP-PUT) If an existing School entity has to be deleted, the following relative URL should be called: "/SchoolService/school/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Education columns: - column: School - column: StartDate - column: Activities - column: Degree - column: Description - column: User - column: FieldOfStudy - column: Grade - column: EndDate The table should have the title "Educations" und the data must be loaded from the server with the following relative URL: "/SchoolService/education/school/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint