public BowlingSteps(BowlingDriver driver)
 {
     _driver = driver ?? throw new ArgumentNullException(nameof(driver));
 }
 public BowlingSteps(BowlingDriver driver)
 {
     _driver = driver;
 }
Exemple #3
0
 public PointsCalculationSteps(BowlingDriver driver)
 {
     _driver = driver ?? throw new ArgumentNullException(nameof(driver));
 }
Exemple #4
0
 public BowlingSteps(BowlingDriver bowlingDriver)
 {
     _bowlingDriver = bowlingDriver;
 }