private void RollMany(int pins, int times, BowlingGame game)
 {
     for (int i = 0;
         i < times;
         i++)
     {
         game.Roll(pins);
     }
 }
 private static void RollSpare(BowlingGame game)
 {
     game.Roll(2);
     game.Roll(8);
 }