コード例 #1
0
 public ExamDataLibrariesIndexModel(
     IExamCategoryService examCategoryService,
     ISkillCategoryService skillCategoryService,
     ISkillPartService skillPartService,
     IExamDataLibraryService examDataLibraryService)
 {
     _ExamCategoryService    = examCategoryService;
     _SkillCategoryService   = skillCategoryService;
     _SkillPartService       = skillPartService;
     _ExamDataLibraryService = examDataLibraryService;
 }
コード例 #2
0
 public SkillPartCreateUpdateModel(
     IExamCategoryService examCategoryService,
     ISkillCategoryService skillCategoryService,
     ISkillPartService skillPartService,
     IExamDataLibraryService examDataLibraryService)
 {
     _ExamCategoryService    = examCategoryService;
     _SkillCategoryService   = skillCategoryService;
     _SkillPartService       = skillPartService;
     _ExamDataLibraryService = examDataLibraryService;
 }
コード例 #3
0
 public ExamDataCreateUpdateModel(
     IExamCategoryService examCategoryService,
     ISkillCategoryService skillCategoryService,
     ISkillPartService skillPartService,
     IExamDataLibraryService examDataLibraryService,
     IGrammarService grammarService)
 {
     _ExamCategoryService    = examCategoryService;
     _SkillCategoryService   = skillCategoryService;
     _SkillPartService       = skillPartService;
     _ExamDataLibraryService = examDataLibraryService;
     _GrammarService         = grammarService;
 }
コード例 #4
0
 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;
 }