Exemplo n.º 1
0
 public RecommendationService(IWarehouseService warehouseService, ICourseService courseService, IStudentService studentService, IStudentCourseAssociationService studentCourseAssociationService, IProgramCourseAssociationService programCourseAssociationService, IExamScheduleService examScheduleService, IPrerequisiteService prerequisiteService)
 {
     this.warehouseService = warehouseService;
     this.courseService    = courseService;
     this.studentService   = studentService;
     this.studentCourseAssociationService = studentCourseAssociationService;
     this.programCourseAssociationService = programCourseAssociationService;
     this.examScheduleService             = examScheduleService;
     this.prerequisiteService             = prerequisiteService;
     retakeAbleMark = 73;
     numberOfTrees  = 10;
 }
 public StudentCourseAssociationController(IStudentService studentService, ICourseService courseService, IStudentCourseAssociationService studentCourseAssociationService)
 {
     this.studentService = studentService;
     this.courseService  = courseService;
     this.studentCourseAssociationService = studentCourseAssociationService;
 }