示例#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 AnswerServices(IMapper mapper, IAnswerBusiness awsnerBusiness)
 {
     _mapper         = mapper;
     _awsnerBusiness = awsnerBusiness;
 }
示例#3
0
 public TrialBusiness(SmartCityContext context, IAnswerBusiness answerBusiness)
 {
     _context        = context;
     _answerBusiness = answerBusiness;
 }
示例#4
0
 public AnswerService(IAnswerBusiness AnswerBiz)
 {
     _AnswerBiz = AnswerBiz;
 }
示例#5
0
 public AnswerServices(IAnswerBusiness answerBusiness)
 {
     _answerBusiness = answerBusiness;
 }