Пример #1
0
 public MLDataRepository
 (
     INamedBucketProvider provider,
     IGroupCourseRepository groupCourseRepository,
     IStudentRepository studentRepository,
     ILessonRepository lessonRepository,
     IMarkRepository markRepository
 )
 {
     this.bucket = provider.GetBucket();
     this.groupCourseRepository = groupCourseRepository;
     this.studentRepository     = studentRepository;
     this.lessonRepository      = lessonRepository;
     this.markRepository        = markRepository;
 }
Пример #2
0
 public DashboardController(
     ICourseRepository courseRepository,
     IGroupRepository groupRepository,
     IStudentRepository studentRepository,
     IUserRepository userRepository,
     IGroupCourseRepository groupCourseRepository,
     IMarkRepository markRepository,
     ILessonRepository lessonRepository,
     IMLDataRepository mlDataRepository)
 {
     this.courseRepository      = courseRepository;
     this.groupRepository       = groupRepository;
     this.studentRepository     = studentRepository;
     this.userRepository        = userRepository;
     this.groupCourseRepository = groupCourseRepository;
     this.markRepository        = markRepository;
     this.lessonRepository      = lessonRepository;
     this.mlDataRepository      = mlDataRepository;
 }