Example #1
0
 public WATTArticleCreatedPMHandler(IDB4Repository db4Repository,
                                    IRedditService redditService,
                                    IStickyCommentEditor stickyCommentEditor)
 {
     _db4Repository       = db4Repository;
     _redditService       = redditService;
     _stickyCommentEditor = stickyCommentEditor;
 }
Example #2
0
 public DeltaAwarder(AppConfiguration appConfiguration,
                     ILogger logger,
                     IUserWikiEditor wikiEditor,
                     IRedditService redditService,
                     ISubredditService subredditService,
                     IDeltaboardEditor deltaboardEditor,
                     IDeltaLogEditor deltaLogEditor,
                     IStickyCommentEditor stickyCommentEditor,
                     IDB4Repository repository)
 {
     _appConfiguration    = appConfiguration;
     _logger              = logger;
     _wikiEditor          = wikiEditor;
     _redditService       = redditService;
     _subredditService    = subredditService;
     _deltaboardEditor    = deltaboardEditor;
     _deltaLogEditor      = deltaLogEditor;
     _stickyCommentEditor = stickyCommentEditor;
     _repository          = repository;
 }
Example #3
0
 public PrivateMessageHandlerFactory(AppConfiguration appConfiguration,
                                     IDB4Repository db4Repository,
                                     IRedditService redditService,
                                     ISubredditService subredditService,
                                     ICommentDetector commentDetector,
                                     ICommentBuilder commentBuilder,
                                     ICommentReplier replier,
                                     IDeltaAwarder deltaAwarder,
                                     IStickyCommentEditor stickyCommentEditor)
 {
     _appConfiguration    = appConfiguration;
     _db4Repository       = db4Repository;
     _redditService       = redditService;
     _subredditService    = subredditService;
     _commentDetector     = commentDetector;
     _commentBuilder      = commentBuilder;
     _replier             = replier;
     _deltaAwarder        = deltaAwarder;
     _stickyCommentEditor = stickyCommentEditor;
 }