コード例 #1
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;
 }
コード例 #2
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;
 }
コード例 #3
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;
 }
コード例 #4
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; 
 }
コード例 #5
0
ファイル: CourseMapper.cs プロジェクト: olehkrut/WorldOfWords
 public CourseMapper(IWordSuiteMapper mapper, ILanguageMapper languageMapper)
 {
     _mapper = mapper;
     _languageMapper = languageMapper;
 }
コード例 #6
0
ファイル: CourseMapper.cs プロジェクト: ikohutua/WorldOfWords
 public CourseMapper(IWordSuiteMapper mapper, ILanguageMapper languageMapper)
 {
     _mapper         = mapper;
     _languageMapper = languageMapper;
 }