Example #1
0
 public UsersService(IUsersLogic usersLogic)
 {
     _usersLogic = usersLogic;
 }
Example #2
0
 public NewsFeedTimeLineService(ITweetRepository tweetRepository, IFollowsLogic followsLogic, IUsersLogic usersLogic,
                                ITimeLineRepository timeLineRepository)
 {
     _tweetRepository    = tweetRepository;
     _followsLogic       = followsLogic;
     _usersLogic         = usersLogic;
     _timeLineRepository = timeLineRepository;
 }