示例#1
0
        public List <Friend> GetFriends(FriendStatus status, int friendCount)
        {
            return(Operation(() =>
            {
                CheckIsUserAuthenticated();

                return serverManager.GetFriendsOfUserByStatus(LoggedUser.Id, status, friendCount).ToList();
            }));
        }