public TipsPartialController( IExamCategoryService _ExamCategoryServices, ISkillCategoryService _SkillCategoryServices, ISkillPartService _SkillPartServices) { this._ExamCategoryServices = _ExamCategoryServices; this._SkillCategoryServices = _SkillCategoryServices; this._SkillPartServices = _SkillPartServices; }
public SkillPartsIndexModel( IExamCategoryService examCategoryService, ISkillCategoryService skillCategoryService, ISkillPartService skillPartService) { _ExamCategoryService = examCategoryService; _SkillCategoryService = skillCategoryService; _SkillPartService = skillPartService; }
public SkillPartCreateUpdateModel( IExamCategoryService examCategoryService, ISkillCategoryService skillCategoryService, ISkillPartService skillPartService, IExamDataLibraryService examDataLibraryService) { _ExamCategoryService = examCategoryService; _SkillCategoryService = skillCategoryService; _SkillPartService = skillPartService; _ExamDataLibraryService = examDataLibraryService; }
public ExamDataLibrariesIndexModel( IExamCategoryService examCategoryService, ISkillCategoryService skillCategoryService, ISkillPartService skillPartService, IExamDataLibraryService examDataLibraryService) { _ExamCategoryService = examCategoryService; _SkillCategoryService = skillCategoryService; _SkillPartService = skillPartService; _ExamDataLibraryService = examDataLibraryService; }
public ExamsIndexModel( IExamCategoryService _ExamCategoryServices, ISkillCategoryService _SkillCategoryServices, ISkillPartService _SkillPartServices, IExamCatInstructService _ExamCatInstructService) { this._ExamCategoryServices = _ExamCategoryServices; this._SkillCategoryServices = _SkillCategoryServices; this._SkillPartServices = _SkillPartServices; this._ExamCatInstructService = _ExamCatInstructService; }
public ExamDataCreateUpdateModel( IExamCategoryService examCategoryService, ISkillCategoryService skillCategoryService, ISkillPartService skillPartService, IExamDataLibraryService examDataLibraryService, IGrammarService grammarService) { _ExamCategoryService = examCategoryService; _SkillCategoryService = skillCategoryService; _SkillPartService = skillPartService; _ExamDataLibraryService = examDataLibraryService; _GrammarService = grammarService; }
public ExamPartialsController( IExamCategoryService _ExamCategoryServices, ISkillCategoryService _SkillCategoryServices, ISkillPartService _SkillPartServices, IRepository <ExamQuestionContainer, Guid> _ExamQuestionContainerRepository, IRepository <ExamQuestion, Guid> _ExamQuestionRepository) { this._ExamCategoryServices = _ExamCategoryServices; this._SkillCategoryServices = _SkillCategoryServices; this._SkillPartServices = _SkillPartServices; this._ExamQuestionContainerRepository = _ExamQuestionContainerRepository; this._ExamQuestionRepository = _ExamQuestionRepository; }
public ExamDataLibraryController( IExamCategoryService examCategoryService, ISkillCategoryService skillCategoryService, ISkillPartService skillPartService, IExamDataLibraryService examDataLibraryService, IExamQuestionGroupService examQuestionGroupService, IRepository <ExamQuestionContainer, Guid> _ExamQuestionContainerRepository, IRepository <ExamQuestion, Guid> _ExamQuestionRepository) { _ExamCategoryService = examCategoryService; _SkillCategoryService = skillCategoryService; _SkillPartService = skillPartService; _ExamDataLibraryService = examDataLibraryService; _ExamQuestionGroupService = examQuestionGroupService; this._ExamQuestionContainerRepository = _ExamQuestionContainerRepository; this._ExamQuestionRepository = _ExamQuestionRepository; }