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; }
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 CourseMapper(IWordSuiteMapper mapper, ILanguageMapper languageMapper) { _mapper = mapper; _languageMapper = languageMapper; }