Exemplo n.º 1
0
 public StatisticsController(ITwitterUserDal twitterUserDal, IFollowersDal followersDal, ITwitterStatisticsHandler twitterStatistics, IExtractionStatisticsHandler extractionStatistics)
 {
     _twitterUserDal       = twitterUserDal;
     _followersDal         = followersDal;
     _twitterStatistics    = twitterStatistics;
     _extractionStatistics = extractionStatistics;
 }
Exemplo n.º 2
0
 public SendTweetsToInboxTask(IActivityPubService activityPubService, IStatusService statusService, IFollowersDal followersDal, InstanceSettings settings, ILogger <SendTweetsToInboxTask> logger)
 {
     _activityPubService = activityPubService;
     _statusService      = statusService;
     _followersDal       = followersDal;
     _settings           = settings;
     _logger             = logger;
 }
 public ProcessUndoFollowUser(IFollowersDal followerDal, ITwitterUserDal twitterUserDal)
 {
     _followerDal    = followerDal;
     _twitterUserDal = twitterUserDal;
 }
Exemplo n.º 4
0
 public RemoveTwitterAccountAction(IFollowersDal followersDal, ITwitterUserDal twitterUserDal, IRejectFollowingAction rejectFollowingAction)
 {
     _followersDal          = followersDal;
     _twitterUserDal        = twitterUserDal;
     _rejectFollowingAction = rejectFollowingAction;
 }
Exemplo n.º 5
0
 public App(IFollowersDal followersDal, IRemoveFollowerAction removeFollowerAction)
 {
     _followersDal         = followersDal;
     _removeFollowerAction = removeFollowerAction;
 }
Exemplo n.º 6
0
 public FollowerModerationProcessor(IFollowersDal followersDal, IModerationRepository moderationRepository, IRemoveFollowerAction removeFollowerAction)
 {
     _followersDal         = followersDal;
     _moderationRepository = moderationRepository;
     _removeFollowerAction = removeFollowerAction;
 }
Exemplo n.º 7
0
 public RemoveFollowerAction(IFollowersDal followersDal, ITwitterUserDal twitterUserDal, IRejectAllFollowingsAction rejectAllFollowingsAction)
 {
     _followersDal              = followersDal;
     _twitterUserDal            = twitterUserDal;
     _rejectAllFollowingsAction = rejectAllFollowingsAction;
 }
 public RetrieveFollowersProcessor(IFollowersDal followersDal)
 {
     _followersDal = followersDal;
 }