public TagController(ITagService tagService, ITagMapper tagMapper, IWordMapper wordMapper, IWordService wordService)
 {
     _tagService = tagService;
     _tagMapper = tagMapper;
     _wordMapper = wordMapper;
     _wordService = wordService;
 }
Beispiel #2
0
 public TagController(ITagService tagService, ITagMapper tagMapper, IWordMapper wordMapper, IWordService wordService)
 {
     _tagService  = tagService;
     _tagMapper   = tagMapper;
     _wordMapper  = wordMapper;
     _wordService = wordService;
 }
Beispiel #3
0
 public WordCreator(IAppDbContext context,
                    IWordCreatorValidator validator,
                    IWordMapper mapper)
 {
     this.context   = context;
     this.validator = validator;
     this.mapper    = mapper;
 }
 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;
 }
 public WordsController(IWordMapper mapper, IWordService service, IWordTranslationService wordTranslationService,
                        IWordManagingService wordManagService, ITagService tagService, ITagMapper tagMapper)
 {
     _mapper                 = mapper;
     _wordService            = service;
     _wordTranslationService = wordTranslationService;
     _tagService             = tagService;
     _wordManagService       = wordManagService;
     _tagMapper              = tagMapper;
 }
 public WordsController(IWordMapper mapper, IWordService service, IWordTranslationService wordTranslationService,
     IWordManagingService wordManagService, ITagService tagService, ITagMapper tagMapper)
 {
     _mapper = mapper;
     _wordService = service;
     _wordTranslationService = wordTranslationService;
     _tagService = tagService;
     _wordManagService = wordManagService;
     _tagMapper = tagMapper;
 }
Beispiel #9
0
 public WordTranslationController(IWordTranslationService wordTranslationService,
                                  IWordTranslationMapper wordTranslationMapper,
                                  IWordService wordService,
                                  IWordMapper wordMapper)
 {
     this.wordTranslationService = wordTranslationService;
     this.wordTranslationMapper  = wordTranslationMapper;
     this.wordService            = wordService;
     this.wordMapper             = wordMapper;
 }
Beispiel #10
0
 public WordUpdater(IAppDbContext context,
                    IWordUpdaterValidator validator,
                    IWordMapper mapper,
                    IWordProvider wordProvider)
 {
     this.context      = context;
     this.validator    = validator;
     this.mapper       = mapper;
     this.wordProvider = wordProvider;
 }
Beispiel #11
0
 public WordService(IUnitOfWorkFactory unitOfWorkFactory, IWordMapper wordMapper)
 {
     _unitOfWorkFactory = unitOfWorkFactory;
     this.wordMapper    = wordMapper;
 }
 public WordsController(IWordMapper mapper, IWordService service)
 {
     _mapper = mapper;
     _service = service;
 }
Beispiel #13
0
 public WordsController(IWordMapper mapper, IWordService service)
 {
     _mapper  = mapper;
     _service = service;
 }
Beispiel #14
0
 public AtbashCipher()
 {
     _wordMapper  = new WordMapper();
     _wordbuilder = new StringBuilder();
 }
 public WordService(IUnitOfWorkFactory unitOfWorkFactory, IWordMapper wordMapper)
 {
     _unitOfWorkFactory = unitOfWorkFactory;
     this.wordMapper = wordMapper;
 }