public WordTranslationService(IUnitOfWorkFactory unitOfWorkFactory, IWordTranslationMapper wordTranslationMapper, 
                                 IWordMapper wordMapper, ITagMapper tagMapper)
 {
     this.unitOfWorkFactory = unitOfWorkFactory;
     this.wordTranslationMapper = wordTranslationMapper;
     this.wordMapper = wordMapper;
     this.tagMapper = tagMapper;
 }
 public WordTranslationService(IUnitOfWorkFactory unitOfWorkFactory, IWordTranslationMapper wordTranslationMapper,
                               IWordMapper wordMapper, ITagMapper tagMapper)
 {
     this.unitOfWorkFactory     = unitOfWorkFactory;
     this.wordTranslationMapper = wordTranslationMapper;
     this.wordMapper            = wordMapper;
     this.tagMapper             = tagMapper;
 }
 public WordTranslationController(IWordTranslationService wordTranslationService, 
     IWordTranslationMapper wordTranslationMapper,
     IWordService wordService,
     IWordMapper wordMapper)
 {
     this.wordTranslationService = wordTranslationService;
     this.wordTranslationMapper = wordTranslationMapper;
     this.wordService = wordService;
     this.wordMapper = wordMapper;
 }
Beispiel #4
0
 public WordTranslationController(IWordTranslationService wordTranslationService,
                                  IWordTranslationMapper wordTranslationMapper,
                                  IWordService wordService,
                                  IWordMapper wordMapper)
 {
     this.wordTranslationService = wordTranslationService;
     this.wordTranslationMapper  = wordTranslationMapper;
     this.wordService            = wordService;
     this.wordMapper             = wordMapper;
 }
 public WordTranslationController(IWordTranslationService wordTranslationService,
                                  IWordTranslationMapper wordTranslationMapper,
                                  IWordManagingService editService,
                                  IWordService wordService,
                                  ITagService tagService,
                                  ITagMapper tagMapper)
 {
     this.wordTranslationService = wordTranslationService;
     this.wordTranslationMapper  = wordTranslationMapper;
     this.editService            = editService;
     this.wordService            = wordService;
     this.tagService             = tagService;
     this.tagMapper = tagMapper;
 }
 public WordTranslationController(IWordTranslationService wordTranslationService,
                                  IWordTranslationMapper wordTranslationMapper,
                                  IWordManagingService editService,
                                  IWordService wordService,
                                  ITagService tagService,
                                  ITagMapper tagMapper)
 {
     this.wordTranslationService = wordTranslationService;
     this.wordTranslationMapper = wordTranslationMapper;
     this.editService = editService;
     this.wordService = wordService;
     this.tagService = tagService;
     this.tagMapper = tagMapper;
 }
Beispiel #7
0
 public GlobalDictionaryController(IWordTranslationMapper _wordTranslationMapper, IWordTranslationService _wordTranslationService)
 {
     wordTranslationMapper  = _wordTranslationMapper;
     wordTranslationService = _wordTranslationService;
 }
 public GlobalDictionaryController(IWordTranslationMapper _wordTranslationMapper, IWordTranslationService _wordTranslationService)
 {
     wordTranslationMapper = _wordTranslationMapper;
     wordTranslationService = _wordTranslationService;
 }