public PreRegistrationController(IPreRegistrationService preRegistrationService, IPeriodInformationService periodInformationService, IClassRoomService classRoomService, IStudentService studentService)
 {
     this.preRegistrationService   = preRegistrationService;
     this.periodInformationService = periodInformationService;
     this.classRoomService         = classRoomService;
     this.studentService           = studentService;
 }
Exemple #2
0
 public NoteEntryController(INoteEntryService noteEntryService, ITeacherService teacherService, IPeriodInformationService periodInformationService, IClassRoomService classRoomService, IStudentService studentService, ILessonService lessonService)
 {
     this.noteEntryService         = noteEntryService;
     this.teacherService           = teacherService;
     this.periodInformationService = periodInformationService;
     this.classRoomService         = classRoomService;
     this.studentService           = studentService;
     this.lessonService            = lessonService;
 }
 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;
 }
Exemple #4
0
 public ClassDefinationController(IClassDefinationService classDefinationService, IClassRoomService classRoomService, IPeriodInformationService periodInformationService)
 {
     this.classDefinationService   = classDefinationService;
     this.classRoomService         = classRoomService;
     this.periodInformationService = periodInformationService;
 }
 public PeriodInformationController(IPeriodInformationService periodInformationService)
 {
     this.periodInformationService = periodInformationService;
 }