Esempio n. 1
0
 public FireAndForgetMentionsCommand(
     ITwitterRepository twitterRepository,
     IHashtagResponseFactory hashtagResponseFactory)
 {
     _twitterRepository      = twitterRepository;
     _hashtagResponseFactory = hashtagResponseFactory;
 }
Esempio n. 2
0
 public RunMentionWatchCommand(
     ITwitterRepository twitterRepository,
     IHashtagResponseFactory hashtagResponseFactory)
 {
     _twitterRepository      = twitterRepository;
     _hashtagResponseFactory = hashtagResponseFactory;
 }
Esempio n. 3
0
 public TweetController(
     ITwitterRepository twitterRepository,
     IHashtagResponseFactory hashtagResponseFactory)
 {
     _twitterRepository      = twitterRepository;
     _hashtagResponseFactory = hashtagResponseFactory;
 }
 public HandleMentionsCommand(
     List <Tweet> tweets,
     ITwitterRepository twitterRepository,
     IHashtagResponseFactory hashtagResponseFactory)
 {
     _tweets                 = tweets;
     _twitterRepository      = twitterRepository;
     _hashtagResponseFactory = hashtagResponseFactory;
 }