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