public QuestionController(ILoggingService loggingService, IQuestionService questionService,
                           ILearningOutcomeService learingOutcomeService, IActivityLogService activitylogService)
     : base(loggingService)
 {
     this._questionService       = questionService;
     this._learingOutcomeService = learingOutcomeService;
     this._activitylogService    = activitylogService;
 }
 public ExaminationAPIController()
 {
     partOfExamService      = new PartOfExamService();
     examinationService     = new ExaminationService();
     logService             = new LogService();
     questionService        = new QuestionService();
     learningOutcomeService = new LearningOutcomeService();
 }
Beispiel #3
0
 public CourseController()
 {
     courseService          = new CourseService();
     categoryService        = new CategoryService();
     learningOutcomeService = new LearningOutcomeService();
     syllabusService        = new SyllabusService();
     examinationService     = new ExaminationService();
 }
 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;
 }
Beispiel #5
0
 public ExaminationController()
 {
     topicService           = new TopicService();
     learningOutcomeService = new LearningOutcomeService();
     examinationService     = new ExaminationService();
     partOfExamService      = new PartOfExamService();
     categoryService        = new CategoryService();
     semesterService        = new SemesterService();
     logService             = new LogService();
     courseService          = new CourseService();
     questionService        = new QuestionService();
 }
Beispiel #6
0
 public QuestionController()
 {
     questionService        = new QuestionService();
     optionService          = new OptionService();
     topicService           = new TopicService();
     levelService           = new LevelService();
     learningOutcomeService = new LearningOutcomeService();
     examinationService     = new ExaminationService();
     importService          = new ImportService();
     courseService          = new CourseService();
     userService            = new UserService();
     categoryService        = new CategoryService();
     logService             = new LogService();
 }
 public LearningOutcomeController()
 {
     learningOutcomeService = new LearningOutcomeService();
     courseService          = new CourseService();
 }
Beispiel #8
0
 public MainObjectiveController(ILoggingService loggingService, IMainObjectiveService mainObjectiveService,
                                ILearningOutcomeService learningOutcomeService) : base(loggingService)
 {
     this._mainObjectiveService   = mainObjectiveService;
     this._learningOutcomeService = learningOutcomeService;
 }
Beispiel #9
0
 public LearningOutcomeController(ILearningOutcomeService learningOutcomeService, UserManager <SyllabusManagerUser> userManager) : base(learningOutcomeService, userManager)
 {
     _learningOutcomeService = learningOutcomeService;
 }
 public LearningOutcomeController(ILoggingService loggingService, ILearningOutcomeService learingOutcomeService) : base(loggingService)
 {
     _learingOutcomeService = learingOutcomeService;
 }