예제 #1
0
 public CourseController(ILoggingService loggingService, ICourseService courseService,
                         IChapterService chapterService, ICourseDepartmentService courseDepartmentService,
                         IMainObjectiveService mainObjectiveService, ILearningOutcomeService learningOutcomeService) : base(loggingService)
 {
     _courseService           = courseService;
     _chapterService          = chapterService;
     _courseDepartmentService = courseDepartmentService;
     _mainObjectiveService    = mainObjectiveService;
     _learningOutcomeService  = learningOutcomeService;
 }
예제 #2
0
 public MainObjectiveController(ILoggingService loggingService, IMainObjectiveService mainObjectiveService,
                                ILearningOutcomeService learningOutcomeService) : base(loggingService)
 {
     this._mainObjectiveService   = mainObjectiveService;
     this._learningOutcomeService = learningOutcomeService;
 }