public PartialsController(
     IExamCategoryService _ExamCategoryService,
     IExamCatInstructService _ExamCatInstructService)
 {
     this._ExamCatInstructService = _ExamCatInstructService;
     this._ExamCategoryService    = _ExamCategoryService;
 }
Ejemplo n.º 2
0
 public IndexModel(
     IExamCatInstructService _ExamCatInstructService,
     IExamCategoryService _ExamCategoryService)
 {
     this._ExamCatInstructService = _ExamCatInstructService;
     this._ExamCategoryService    = _ExamCategoryService;
 }
Ejemplo n.º 3
0
 public TipsPartialController(
     IExamCategoryService _ExamCategoryServices,
     ISkillCategoryService _SkillCategoryServices,
     ISkillPartService _SkillPartServices)
 {
     this._ExamCategoryServices  = _ExamCategoryServices;
     this._SkillCategoryServices = _SkillCategoryServices;
     this._SkillPartServices     = _SkillPartServices;
 }
Ejemplo n.º 4
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;
 }
Ejemplo n.º 6
0
 public ExamDataLibrariesIndexModel(
     IExamCategoryService examCategoryService,
     ISkillCategoryService skillCategoryService,
     ISkillPartService skillPartService,
     IExamDataLibraryService examDataLibraryService)
 {
     _ExamCategoryService    = examCategoryService;
     _SkillCategoryService   = skillCategoryService;
     _SkillPartService       = skillPartService;
     _ExamDataLibraryService = examDataLibraryService;
 }
Ejemplo n.º 7
0
 public DashboardIndexModel(
     IExamCategoryService _ExamCategoryService,
     IExamLogService _ExamLogService,
     IScoreLogService _ScoreLogService,
     IReadOnlyRepository <ExamCatInstructor, Guid> _ExamCatInstructorRepository)
 {
     this._ExamCategoryService         = _ExamCategoryService;
     this._ExamLogService              = _ExamLogService;
     this._ScoreLogService             = _ScoreLogService;
     this._ExamCatInstructorRepository = _ExamCatInstructorRepository;
 }
 public ExamsIndexModel(
     IExamCategoryService _ExamCategoryServices,
     ISkillCategoryService _SkillCategoryServices,
     ISkillPartService _SkillPartServices,
     IExamCatInstructService _ExamCatInstructService)
 {
     this._ExamCategoryServices   = _ExamCategoryServices;
     this._SkillCategoryServices  = _SkillCategoryServices;
     this._SkillPartServices      = _SkillPartServices;
     this._ExamCatInstructService = _ExamCatInstructService;
 }
Ejemplo n.º 9
0
 public ExamDataCreateUpdateModel(
     IExamCategoryService examCategoryService,
     ISkillCategoryService skillCategoryService,
     ISkillPartService skillPartService,
     IExamDataLibraryService examDataLibraryService,
     IGrammarService grammarService)
 {
     _ExamCategoryService    = examCategoryService;
     _SkillCategoryService   = skillCategoryService;
     _SkillPartService       = skillPartService;
     _ExamDataLibraryService = examDataLibraryService;
     _GrammarService         = grammarService;
 }
Ejemplo n.º 10
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;
 }
Ejemplo n.º 12
0
 public ExamCategoriesIndexModel(IExamCategoryService examCategoryService)
 {
     _ExamCategoryService = examCategoryService;
 }
 public ExamCategoryCreateUpdateModel(IExamCategoryService examCategoryService)
 {
     _ExamCategoryService = examCategoryService;
 }
Ejemplo n.º 14
0
 public SkillCategoryCreateUpdateModel(IExamCategoryService examCategoryService,
                                       ISkillCategoryService _SkillCategoryService)
 {
     _ExamCategoryService       = examCategoryService;
     this._SkillCategoryService = _SkillCategoryService;
 }
Ejemplo n.º 15
0
 public IndexModel(IExamCategoryService _ExamCategoryService)
 {
     this._ExamCategoryService = _ExamCategoryService;
 }