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;
 }
Beispiel #2
0
 public ExamTypesController(IExamTypeService examTypeService)
 {
     _examTypeService = examTypeService;
 }
 public ExamTypeController(IExamTypeService ExamTypeService)
 {
     _examTypeService = ExamTypeService;
 }
Beispiel #4
0
 public ExamsController(IExamservice examservice, IExamTypeService examTypeService, ISubCategoryService subCategoryService)
 {
     _examservice        = examservice;
     _examTypeService    = examTypeService;
     _subCategoryService = subCategoryService;
 }