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 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; }