コード例 #1
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;
 }
コード例 #2
0
 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;
 }