public ExamScheduleController(
     IExamScheduleService examScheduleService,
     ILogger <ExamScheduleController> logger)
 {
     _examScheduleService = examScheduleService;
     _logger = logger;
 }
Esempio n. 2
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 ExamScheduleController(IExamScheduleService examScheduleService, ICourseService courseService)
 {
     this.examScheduleService = examScheduleService;
     this.courseService       = courseService;
 }