Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
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: Email type: STRING - name: FaxNo type: STRING - name: SchoolInfo type: STRING - name: Image type: STRING - name: PostalCode type: STRING - name: SchoolName type: STRING - name: SchoolType type: SchoolType - name: City type: STRING - name: Street type: STRING - name: PhoneNo type: STRING The data source for the [SchoolType] select control should be loaded from the relative URL: "/SchoolService/schooltype" (HTTP-GET) 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 Schoolyard columns: - column: School - column: SchoolyardName The table should have the title "Schoolyards" und the data must be loaded from the server with the following relative URL: "/RoomService/schoolyard/school/{id}" Add a HTML table to the view with the following ProjectWeek columns: - column: ToDate - column: School - column: FromDate The table should have the title "ProjectWeeks" und the data must be loaded from the server with the following relative URL: "/SchoolService/projectweek/school/{id}" Add a HTML table to the view with the following Building columns: - column: PostalCode - column: Street - column: BuildingName - column: BuildingInfo - column: City - column: School The table should have the title "Buildings" und the data must be loaded from the server with the following relative URL: "/RoomService/building/school/{id}" Add a HTML table to the view with the following TeacherBoard columns: - column: SchoolYear - column: School The table should have the title "TeacherBoards" und the data must be loaded from the server with the following relative URL: "/TeacherBoardService/teacherboard/school/{id}" Add a HTML table to the view with the following VitaEntry columns: - column: School - column: Student - column: Nursery - column: Company - column: FromDate - column: ToDate - column: Details The table should have the title "VitaEntrys" und the data must be loaded from the server with the following relative URL: "/NurseryService/vitaentry/school/{id}" Add a HTML table to the view with the following Budget columns: - column: TimePeriod - column: School The table should have the title "Budgets" und the data must be loaded from the server with the following relative URL: "/TimePeriodService/budget/school/{id}" Add a HTML table to the view with the following SchoolDoctor columns: - column: City - column: DoctorName - column: CellPhoneNo - column: Street - column: FaxNo - column: PostalCode - column: DoctorInfo - column: PhoneNo - column: School The table should have the title "SchoolDoctors" und the data must be loaded from the server with the following relative URL: "/SchoolService/schooldoctor/school/{id}" Add a HTML table to the view with the following Holidays columns: - column: FromDate - column: ToDate - column: Description - column: School The table should have the title "Holidayss" und the data must be loaded from the server with the following relative URL: "/SchoolService/holidays/school/{id}" Add a HTML table to the view with the following StudentRepresentation columns: - column: Student - column: School - column: SchoolClass The table should have the title "StudentRepresentations" und the data must be loaded from the server with the following relative URL: "/SchoolService/studentrepresentation/school/{id}" Add a HTML table to the view with the following SchoolClass columns: - column: Teacher - column: AgeGroup - column: Room - column: SchoolYear - column: ClassName - column: School The table should have the title "SchoolClasss" und the data must be loaded from the server with the following relative URL: "/SchoolYearService/schoolclass/school/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum