//Message will go to the intended friend. public void Send(Friend intendedFriend, string msg) { mediator.Send(this, intendedFriend, msg); }
public void Register(Friend friend) { participants.Add(friend); }