public DeleteStopwordCommandHandler(IStopwordService stopwordService)
 {
     _stopwordService = stopwordService;
 }
 public AnalyzeService(IStopwordService stopwordService)
 {
     _stopwordService = stopwordService;
 }
 public StopwordsController(IStopwordService stopwordService)
 {
     _stopwordService = stopwordService;
 }
 public AddStopwordCommandhandler(IStopwordService stopwordService)
 {
     _stopwordService = stopwordService;
 }
 public GetStopwordQueryHandler(IStopwordService stopwordService)
 {
     _stopwordService = stopwordService;
 }