Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
TeachingUnitView
Please create a React-JS view called "TeachingUnitView" for the fields of the TeachingUnit entity. The TeachingUnitView must contain the following fields: - name: SchoolSubject type: SchoolSubject - name: SchoolClass type: SchoolClass - name: CourseGroup type: CourseGroup - name: Teacher type: Teacher - name: Room type: Room - name: SchoolYear type: SchoolYear - name: RowIndex type: INT - name: ColumnIndex type: INT The data source for the [SchoolSubject] select control should be loaded from the relative URL: "/SchoolSubjectService/schoolsubject" (HTTP-GET) The data source for the [CourseGroup] select control should be loaded from the relative URL: "/SchoolSubjectService/coursegroup" (HTTP-GET) The data source for the [Teacher] select control should be loaded from the relative URL: "/StudentService/teacher" (HTTP-GET) The data source for the [SchoolClass] select control should be loaded from the relative URL: "/SchoolYearService/schoolclass" (HTTP-GET) The data source for the [SchoolYear] select control should be loaded from the relative URL: "/SchoolYearService/schoolyear" (HTTP-GET) The data source for the [Room] select control should be loaded from the relative URL: "/RoomService/room" (HTTP-GET) An existing TeachingUnit entity should be loaded from the relative URL: "/SchoolYearService/teachingunit/{id}" (HTTP-GET) If a new TeachingUnit entity has been created, the new entity should be posted to the relative URL: "/SchoolYearService/teachingunit" (HTTP-POST) If an existing TeachingUnit entity has been updated, the modified entity should be sent to the relative URL: "/SchoolYearService/teachingunit/{id}" (HTTP-PUT) If an existing TeachingUnit entity has to be deleted, the following relative URL should be called: "/SchoolYearService/teachingunit/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum