public MachineLearningDataController( IMLDataRepository mlDataRepository, IMarkRepository markRepository, ILessonRepository lessonRepository ) { this.mlDataRepository = mlDataRepository; this.markRepository = markRepository; this.lessonRepository = lessonRepository; }
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; }