public MessengerObject RemoveFriend(int friendID)
        {
            if (!_friends.ContainsKey(friendID))
            {
                return(this);
            }

            Friend friend = _friends[friendID];

            foreach (Category category in friend.GetCategories())
            {
                RemoveFriendFromCategory(friend, category);
            }
            return(this);
        }