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;
 }