Exemplo n.º 1
0
 public RedisNewsfeedAlternativeRepository(ICommentCountCacheRepository commentCountRepo,
                                           ILikeCountCacheRepository entryLikeRepo,
                                           IWallPostCacheRepository wallPostRepo)
 {
     this.commentCountRepo = commentCountRepo;
     this.entryLikeRepo    = entryLikeRepo;
     this.wallPostRepo     = wallPostRepo;
 }
Exemplo n.º 2
0
 public RedisGroupWallRepository(ICommentCountCacheRepository commentCountRepo,
                                 ILikeCountCacheRepository entryLikeRepo,
                                 IWallPostCacheRepository wallPostRepo)
 {
     this.commentCountRepo = commentCountRepo;
     this.entryLikeRepo    = entryLikeRepo;
     this.wallPostRepo     = wallPostRepo;
 }
Exemplo n.º 3
0
 public WallPostProvider(
     IWallPostRepository wallPostRepo,
     IWallPostCacheRepository wallPostCacheRepo,
     IGroupWallRepository groupWallCacheRepo)
 {
     this.wallPostRepo       = wallPostRepo;
     this.wallPostCacheRepo  = wallPostCacheRepo;
     this.groupWallCacheRepo = groupWallCacheRepo;
 }