Exemplo n.º 1
0
 public TipsPartialController(
     IExamCategoryService _ExamCategoryServices,
     ISkillCategoryService _SkillCategoryServices,
     ISkillPartService _SkillPartServices)
 {
     this._ExamCategoryServices  = _ExamCategoryServices;
     this._SkillCategoryServices = _SkillCategoryServices;
     this._SkillPartServices     = _SkillPartServices;
 }
Exemplo n.º 2
0
 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;
 }
Exemplo n.º 4
0
 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;
 }
Exemplo n.º 6
0
 public ExamDataCreateUpdateModel(
     IExamCategoryService examCategoryService,
     ISkillCategoryService skillCategoryService,
     ISkillPartService skillPartService,
     IExamDataLibraryService examDataLibraryService,
     IGrammarService grammarService)
 {
     _ExamCategoryService    = examCategoryService;
     _SkillCategoryService   = skillCategoryService;
     _SkillPartService       = skillPartService;
     _ExamDataLibraryService = examDataLibraryService;
     _GrammarService         = grammarService;
 }
Exemplo n.º 7
0
 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;
 }
Exemplo n.º 9
0
 /// <summary>
 ///     Initialize controller with injectors.
 /// </summary>
 /// <param name="fileService"></param>
 /// <param name="skillCategoryService"></param>
 public ApiSkillCategoryController(IFileService fileService, ISkillCategoryService skillCategoryService)
 {
     _fileService          = fileService;
     _skillCategoryService = skillCategoryService;
 }
Exemplo n.º 10
0
 public SkillCategoryCreateUpdateModel(IExamCategoryService examCategoryService,
                                       ISkillCategoryService _SkillCategoryService)
 {
     _ExamCategoryService       = examCategoryService;
     this._SkillCategoryService = _SkillCategoryService;
 }