Пример #1
0
 public WordSuiteController(
     IWordSuiteService wordSuiteService,
     IWordSuiteMapper wordSuiteMapper,
     ITrainingWordSuiteMapper trainingWordSuiteMapper,
     IWordProgressService wordProgressService,
     IWordProgressMapper wordProgressMapper,
     IUserService userservice,
     IUserForListingMapper userListMapper,
     IQuizMapper quizMapper)
 {
     this.wordSuiteMapper         = wordSuiteMapper;
     this.wordSuiteService        = wordSuiteService;
     this.trainingWordSuiteMapper = trainingWordSuiteMapper;
     this.wordProgressMapper      = wordProgressMapper;
     this.wordProgressService     = wordProgressService;
     this._userservice            = userservice;
     this._userListMapper         = userListMapper;
     this._quizMapper             = quizMapper;
 }
Пример #2
0
 public WordSuiteService(IUnitOfWorkFactory unitOfWorkFactory, IQuizMapper quizMapper)
 {
     _unitOfWorkFactory = unitOfWorkFactory;
 }