Esempio n. 1
0
 public void Setup()
 {
     service = new WordCountService();
 }
 public WordCounterController(IWordCountService wordService, IJsonResponseFormatHelper responseFormatHelper)
 {
     this.wordService          = wordService;
     this.responseFormatHelper = responseFormatHelper;
 }
Esempio n. 3
0
 public WordCountController(IMemoryCache cache, IWordCountService wordCountService)
 {
     _cache            = cache;
     _wordCountService = wordCountService;
 }