Esempio n. 1
0
        public virtual void ProcessGame(PlayoffGame game)
        {
            if (IsComplete())
            {
                throw new ApplicationException("Series is complete, why are we trying to play another game?");
            }

            ProcessSeriesGame(game);
        }
Esempio n. 2
0
 public abstract void ProcessSeriesGame(PlayoffGame game);