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