コード例 #1
0
ファイル: UserRepository.cs プロジェクト: llenroc/Messenger-2
 public int GetUsersPageCount(int usersPerPage)
 {
     return(Pagination.CountPages(_context.Users.Count(), usersPerPage));
 }
コード例 #2
0
 public int GetLastMessagesPageCount(int thisUserId, int messagesPerPage)
 {
     return(Pagination.CountPages(GetLastMessages(thisUserId).Count(), messagesPerPage));
 }
コード例 #3
0
 public int GetAllFriendshipRequestsPageCount(int receiverId, int usersPerPage)
 {
     return(Pagination.CountPages(GetAllFriendshipRequests(receiverId).Count(), usersPerPage));
 }