예제 #1
0
 public TweetReceivedHandler(ILog log, IEmotionDetector emotionDetector, EmotionPersister emotionPersister, TweetCache tweetCache)
 {
     _log              = log;
     _emotionDetector  = emotionDetector;
     _emotionPersister = emotionPersister;
     _tweetCache       = tweetCache;
 }
예제 #2
0
 public SmileService(IEmotionDetector detector, IPhysicalRepository physicalRepository)
 {
     _detector           = detector;
     _physicalRepository = physicalRepository;
 }
예제 #3
0
 public TestSmileService(IEmotionDetector detector)
 {
     this.detector = detector;
 }