Ejemplo n.º 1
0
 public RoomLessonTeacherController(IRoomLessonTeacherService roomLessonTeacherService, IClassRoomService classRoomService, ILessonService lessonService, ITeacherService teacherService, IBranchService branchService)
 {
     this.roomLessonTeacherService = roomLessonTeacherService;
     this.classRoomService         = classRoomService;
     this.lessonService            = lessonService;
     this.teacherService           = teacherService;
     this.branchService            = branchService;
 }
 public ClassRoomController(AppDbContext context, IRoomLessonTeacherService roomLessonTeacherService, ITeacherService teacherService, IClassRoomService classRoomService, UserManager <AppUser> userManager, INoteEntryService noteEntryService, IPeriodInformationService periodInformationService, IStudentService studentService, ILessonService lessonService)
 {
     this.context = context;
     this.roomLessonTeacherService = roomLessonTeacherService;
     this.teacherService           = teacherService;
     this.classRoomService         = classRoomService;
     this.userManager              = userManager;
     this.noteEntryService         = noteEntryService;
     this.periodInformationService = periodInformationService;
     this.studentService           = studentService;
     this.lessonService            = lessonService;
 }