public CandidateBusiness(
     IQuizBusiness quizBusiness,
     IQuizRepository quizRepository,
     ICandidateRepository candidateRepository,
     ICandidateQuizAssignRepository candidateQuizAssignRepository,
     ICandidateQuizAssignResultRepository candidateQuizAssignResultRepository,
     ICandidateQuizAssignResultDetailRepository candidateQuizAssignResultDetailRepository)
 {
     this._quizBusiness                              = quizBusiness;
     this._quizRepository                            = quizRepository;
     this._candidateRepository                       = candidateRepository;
     this._candidateQuizAssignRepository             = candidateQuizAssignRepository;
     this._candidateQuizAssignResultRepository       = candidateQuizAssignResultRepository;
     this._candidateQuizAssignResultDetailRepository = candidateQuizAssignResultDetailRepository;
 }
Пример #2
0
 public QuizController(ILoggerManager _logger, IMapper _mapper, IQuizBusiness _quizBusiness)
 {
     this.logger       = _logger;
     this.mapper       = _mapper;
     this.quizBusiness = _quizBusiness;
 }