public override void Send(string msg, Colleague colleague) { if (Customer == colleague) { Programmer.Notify(msg); } else if (Programmer == colleague) { Tester.Notify(msg); } else if (Tester == colleague) { Customer.Notify(msg); } }
public abstract void Send(string msg, Colleague colleague);