public override void Send(string from, string to, string msg) { Chatter chatter = _chatters[to]; if (chatter != null) { chatter.Receive(from, msg); } }