Exemplo n.º 1
0
 public TimeLineAppService(ITimeLineRepository timeLineRepository,
                           ILogged logged,
                           ILikesRepository likesRepository)
 {
     _timeLineRepository = timeLineRepository;
     _logged             = logged;
     _likesRepository    = likesRepository;
 }
Exemplo n.º 2
0
 public NewsFeedTimeLineService(ITweetRepository tweetRepository, IFollowsLogic followsLogic, IUsersLogic usersLogic,
                                ITimeLineRepository timeLineRepository)
 {
     _tweetRepository    = tweetRepository;
     _followsLogic       = followsLogic;
     _usersLogic         = usersLogic;
     _timeLineRepository = timeLineRepository;
 }
 public HomeTimeLineService(ITweetRepository tweetRepository, ITimeLineRepository timeLineRepository, IJsonUtils jsonUtils)
 {
     _tweetRepository    = tweetRepository;
     _timeLineRepository = timeLineRepository;
     _jsonUtils          = jsonUtils;
 }
Exemplo n.º 4
0
 public TimeLineService(ITimeLineRepository repository)
 {
     _repository = repository;
 }
Exemplo n.º 5
0
 public TimeLineService(ITimeLineRepository repo, IRfqRepository repoRfq, IQuotationRepository repoQuotation)
 {
     this.repo          = repo;
     this.repoRfq       = repoRfq;
     this.repoQuotation = repoQuotation;
 }
Exemplo n.º 6
0
 public TimeLineBusiness(ITimeLineRepository timeLineRepository)
 {
     BaseRepository = timeLineRepository;
 }
Exemplo n.º 7
0
 public TimeLineService(ITimeLineRepository timeLineRepository) : base(timeLineRepository)
 {
     _timeLineRepository = timeLineRepository;
 }