예제 #1
0
 public ProblemController(IProblemService ProblemService,
                          IProblemCategoryService ProblemCategoryService,
                          IBelongService BelongService,
                          IChapterService ChapterService, ISubjectInfoService SubjectInfoService,
                          IProblemLibraryService ProblemLibraryService,
                          IAnswerService AnswerService,
                          IGrabTopicService grabTopic,
                          IExamClassService examClassService,
                          IExamProblemService examProblemService,
                          IExamAnswerService examAnswerService,
                          IImageInfoService imageInfoService)
 {
     _ProblemService         = ProblemService;
     _ProblemCategoryService = ProblemCategoryService;
     _BelongService          = BelongService;
     _ChapterService         = ChapterService;
     _SubjectInfoService     = SubjectInfoService;
     _ProblemLibraryService  = ProblemLibraryService;
     _AnswerService          = AnswerService;
     _grabTopic          = grabTopic;
     _examClassService   = examClassService;
     _examProblemService = examProblemService;
     _examAnswerService  = examAnswerService;
     _imageInfoService   = imageInfoService;
 }
예제 #2
0
 public HomeController(ISubjectInfoService subjectinfoInfoService, ISubjectOptionService subjectOptionService, ISubjectResultService subjectResultService, IPictureService pictureService)
 {
     _subjectinfoInfoService = subjectinfoInfoService;
     _subjectOptionService = subjectOptionService;
     _subjectResultService = subjectResultService;
     _pictureService = pictureService;
 }
예제 #3
0
 public ApiSubjectController(ISubjectService subjectService, IPerformanceService performanceService, ISubjectInfoService subjectInfoService)
 {
     _subjectService     = subjectService;
     _performanceService = performanceService;
     _subjectInfoService = subjectInfoService;
 }
 public SubjectInfoController(ISubjectInfoService service, IMapper mapper)
 {
     _service = service;
     _mapper  = mapper;
 }
예제 #5
0
 public SubjectInfoController(ISubjectInfoService subjectInfoService)
 {
     _subjectInfoService = subjectInfoService;
 }
 public ApiGroupController(IGroupService groupService, ISubjectInfoService subjectInfoService)
 {
     _groupService       = groupService;
     _subjectInfoService = subjectInfoService;
 }
예제 #7
0
 public GameController(ISubjectInfoService subjectInfoService, ISubjectOptionService subjectOptionService, ISubjectResultService subjectResultService)
 {
     _subjectInfoService = subjectInfoService;
     _subjectOptionService = subjectOptionService;
     _subjectResultService = subjectResultService;
 }