コード例 #1
0
 public DeleteStopwordCommandHandler(IStopwordService stopwordService)
 {
     _stopwordService = stopwordService;
 }
コード例 #2
0
 public AnalyzeService(IStopwordService stopwordService)
 {
     _stopwordService = stopwordService;
 }
コード例 #3
0
 public StopwordsController(IStopwordService stopwordService)
 {
     _stopwordService = stopwordService;
 }
コード例 #4
0
 public AddStopwordCommandhandler(IStopwordService stopwordService)
 {
     _stopwordService = stopwordService;
 }
コード例 #5
0
 public GetStopwordQueryHandler(IStopwordService stopwordService)
 {
     _stopwordService = stopwordService;
 }