public int GetUsersPageCount(int usersPerPage) { return(Pagination.CountPages(_context.Users.Count(), usersPerPage)); }
public int GetLastMessagesPageCount(int thisUserId, int messagesPerPage) { return(Pagination.CountPages(GetLastMessages(thisUserId).Count(), messagesPerPage)); }
public int GetAllFriendshipRequestsPageCount(int receiverId, int usersPerPage) { return(Pagination.CountPages(GetAllFriendshipRequests(receiverId).Count(), usersPerPage)); }