コード例 #1
0
 public RedisNewsfeedAlternativeRepository(ICommentCountCacheRepository commentCountRepo,
                                           ILikeCountCacheRepository entryLikeRepo,
                                           IWallPostCacheRepository wallPostRepo)
 {
     this.commentCountRepo = commentCountRepo;
     this.entryLikeRepo    = entryLikeRepo;
     this.wallPostRepo     = wallPostRepo;
 }
コード例 #2
0
 public RedisGroupWallRepository(ICommentCountCacheRepository commentCountRepo,
                                 ILikeCountCacheRepository entryLikeRepo,
                                 IWallPostCacheRepository wallPostRepo)
 {
     this.commentCountRepo = commentCountRepo;
     this.entryLikeRepo    = entryLikeRepo;
     this.wallPostRepo     = wallPostRepo;
 }
コード例 #3
0
ファイル: WallPostProvider.cs プロジェクト: yilmazanil/SFeed
 public WallPostProvider(
     IWallPostRepository wallPostRepo,
     IWallPostCacheRepository wallPostCacheRepo,
     IGroupWallRepository groupWallCacheRepo)
 {
     this.wallPostRepo       = wallPostRepo;
     this.wallPostCacheRepo  = wallPostCacheRepo;
     this.groupWallCacheRepo = groupWallCacheRepo;
 }