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 ExamQuestionsController(IExamQuestionService examQuestionService, IQuestionService questionService, IExamservice examservice) { _examQuestionService = examQuestionService; _questionService = questionService; _examservice = examservice; }
public ExamsController(IExamservice examservice, IExamTypeService examTypeService, ISubCategoryService subCategoryService) { _examservice = examservice; _examTypeService = examTypeService; _subCategoryService = subCategoryService; }