Пример #1
0
 public ProblemService(IProblemBusiness ProblemBiz,
                       IProblemCategoryBusiness ProblemCatoryBiz,
                       IBelongBusiness BelongBiz,
                       ISubjectInfoBusiness SubjectInfoBiz,
                       IChapterBusiness ChapterBiz,
                       IAnswerBusiness AnswerBiz,
                       ILogBusiness LogBiz)
 {
     _ProblemBiz       = ProblemBiz;
     _ProblemCatoryBiz = ProblemCatoryBiz;
     _BelongBiz        = BelongBiz;
     _SubjectInfoBiz   = SubjectInfoBiz;
     _ChapterBiz       = ChapterBiz;
     _AnswerBiz        = AnswerBiz;
     _LogBiz           = LogBiz;
 }
Пример #2
0
 public ChapterService(IChapterBusiness ChapterBiz)
 {
     _ChapterBiz = ChapterBiz;
 }
Пример #3
0
 public ChapterController(IChapterBusiness chapterBus)
 {
     _chapterBus = chapterBus;
 }