コード例 #1
0
ファイル: FeedRepository.cs プロジェクト: mike442144/FBS
 public int GetFriendsFeedsCountByUserID(Guid uid, string type)
 {
     return(FeedPersist.GetFriendsFeedsCountByUserID(uid, type));
 }
コード例 #2
0
ファイル: FeedRepository.cs プロジェクト: mike442144/FBS
 public IList <Feed> FetchFeedsByUserID(Guid uid, int startIndex, int count, string type)
 {
     return(FeedPersist.FetchFeeds(uid, startIndex, count, type));
 }