public ExamController(ICategoryService categoryService, ISubCategoryService subCategoryService, IQuestionService questionService, IExamTypeService examTypeService, IExamQuestionService examQuestionService, IExamservice examservice, IPackageService packageService)
 {
     _categoryService     = categoryService;
     _subCategoryService  = subCategoryService;
     _examTypeService     = examTypeService;
     _examservice         = examservice;
     _packageService      = packageService;
     _examQuestionService = examQuestionService;
     _questionService     = questionService;
 }
예제 #2
0
 public ExamQuestionsController(IExamQuestionService examQuestionService, IQuestionService questionService, IExamservice examservice)
 {
     _examQuestionService = examQuestionService;
     _questionService     = questionService;
     _examservice         = examservice;
 }
예제 #3
0
 public ExamsController(IExamservice examservice, IExamTypeService examTypeService, ISubCategoryService subCategoryService)
 {
     _examservice        = examservice;
     _examTypeService    = examTypeService;
     _subCategoryService = subCategoryService;
 }