Ejemplo n.º 1
0
 public TestWordSuiteController(IQuizWordSuiteMapper quizMapper, ITrainingWordSuiteMapper trainingMapper, IWordSuiteService service,
                                IWordProgressService progressService)
 {
     _quizMapper      = quizMapper;
     _trainingMapper  = trainingMapper;
     _service         = service;
     _progressService = progressService;
 }
 public TrainingWordSuiteController(IQuizWordSuiteMapper quizMapper, ITrainingWordSuiteMapper trainingMapper, IWordSuiteService service,
                                    IWordProgressService progressService, IWordProgressMapper progressMapper, IWordTranslationService wordTranslationService,
                                    IWordService wordService)
 {
     _quizMapper             = quizMapper;
     _trainingMapper         = trainingMapper;
     _service                = service;
     _progressService        = progressService;
     _progressMapper         = progressMapper;
     _wordTranslationService = wordTranslationService;
     _wordService            = wordService;
 }
Ejemplo n.º 3
0
 public WordSuiteController(
     IWordSuiteService wordSuiteService,
     IWordSuiteMapper wordSuiteMapper,
     ITrainingWordSuiteMapper trainingWordSuiteMapper,
     IWordProgressService wordProgressService,
     IWordProgressMapper wordProgressMapper)
 {
     this.wordSuiteMapper = wordSuiteMapper;
     this.wordSuiteService = wordSuiteService;
     this.trainingWordSuiteMapper = trainingWordSuiteMapper;
     this.wordProgressMapper = wordProgressMapper;
     this.wordProgressService = wordProgressService;
 }
Ejemplo n.º 4
0
 public WordSuiteController(
     IWordSuiteService wordSuiteService,
     IWordSuiteMapper wordSuiteMapper,
     ITrainingWordSuiteMapper trainingWordSuiteMapper,
     IWordProgressService wordProgressService,
     IWordProgressMapper wordProgressMapper)
 {
     this.wordSuiteMapper         = wordSuiteMapper;
     this.wordSuiteService        = wordSuiteService;
     this.trainingWordSuiteMapper = trainingWordSuiteMapper;
     this.wordProgressMapper      = wordProgressMapper;
     this.wordProgressService     = wordProgressService;
 }
Ejemplo n.º 5
0
 public WordSuiteController(
     IWordSuiteService wordSuiteService,
     IWordSuiteMapper wordSuiteMapper,
     ITrainingWordSuiteMapper trainingWordSuiteMapper,
     IWordProgressService wordProgressService,
     IWordProgressMapper wordProgressMapper,
     IUserService userservice,
     IUserForListingMapper userListMapper)
 {
     this.wordSuiteMapper         = wordSuiteMapper;
     this.wordSuiteService        = wordSuiteService;
     this.trainingWordSuiteMapper = trainingWordSuiteMapper;
     this.wordProgressMapper      = wordProgressMapper;
     this.wordProgressService     = wordProgressService;
     this._userservice            = userservice;
     this._userListMapper         = userListMapper;
 }
 public WordSuiteController(
     IWordSuiteService wordSuiteService,
     IWordSuiteMapper wordSuiteMapper,
     ITrainingWordSuiteMapper trainingWordSuiteMapper,
     IWordProgressService wordProgressService,
     IWordProgressMapper wordProgressMapper,
     IUserService userservice, 
     IUserForListingMapper userListMapper)
 {
     this.wordSuiteMapper = wordSuiteMapper;
     this.wordSuiteService = wordSuiteService;
     this.trainingWordSuiteMapper = trainingWordSuiteMapper;
     this.wordProgressMapper = wordProgressMapper;
     this.wordProgressService = wordProgressService;
     this._userservice = userservice;
     this._userListMapper = userListMapper; 
 }