示例#1
0
        static void Main(string[] args)
        {
            var coach        = new Coach();
            var footballTeam = new FootballTeam();

            coach.SetCommand(new FootballCommand(footballTeam));
            coach.ScreamToStart();
            coach.ScreamToStop();
        }