예제 #1
0
        public void SendSpam(Profile profile)
        {
            IIterator iteratorCoworker = _network.CreateCoworkerIterator(profile.GetId);
            IIterator iteratorFriends  = _network.CreateFriendsIterator(profile.GetId);

            _spammer.Send(iteratorCoworker, "You received the spam message");
            _spammer.Send(iteratorFriends, "You received the spam message");
        }