コード例 #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 DepartmentController(ILoggingService loggingService, ICourseDepartmentService courseDepartmentService) : base(loggingService)
 {
     this._courseDepartmentService = courseDepartmentService;
 }