Пример #1
0
 public MachineLearningDataController(
     IMLDataRepository mlDataRepository,
     IMarkRepository markRepository,
     ILessonRepository lessonRepository
     )
 {
     this.mlDataRepository = mlDataRepository;
     this.markRepository   = markRepository;
     this.lessonRepository = lessonRepository;
 }
Пример #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;
 }