예제 #1
0
 public RedisGroupWallRepository(ICommentCountCacheRepository commentCountRepo,
                                 ILikeCountCacheRepository entryLikeRepo,
                                 IWallPostCacheRepository wallPostRepo)
 {
     this.commentCountRepo = commentCountRepo;
     this.entryLikeRepo    = entryLikeRepo;
     this.wallPostRepo     = wallPostRepo;
 }
예제 #2
0
 public CommentProvider(ICommentRepository commentRepo,
                        ICommentCountCacheRepository commentCounterCacheRepo,
                        ILikeCountCacheRepository entryLikeCacheRepo)
 {
     this.commentRepo             = commentRepo;
     this.commentCounterCacheRepo = commentCounterCacheRepo;
     this.entryLikeCacheRepo      = entryLikeCacheRepo;
 }
예제 #3
0
 public RedisNewsfeedAlternativeRepository(ICommentCountCacheRepository commentCountRepo,
                                           ILikeCountCacheRepository entryLikeRepo,
                                           IWallPostCacheRepository wallPostRepo)
 {
     this.commentCountRepo = commentCountRepo;
     this.entryLikeRepo    = entryLikeRepo;
     this.wallPostRepo     = wallPostRepo;
 }