public UserController(ITextAnalyserService textAnalyserService)
 {
     this.textAnalyserService = textAnalyserService;
 }
Example #2
0
 public TextAnalyser(ITextAnalyserService textAnalyserService, IWordsRepository wordsRepository)
 {
     _textAnalyserService = textAnalyserService;
     _wordsRepository     = wordsRepository;
 }