public BowlingSteps(BowlingDriver driver) { _driver = driver ?? throw new ArgumentNullException(nameof(driver)); }
public BowlingSteps(BowlingDriver driver) { _driver = driver; }
public PointsCalculationSteps(BowlingDriver driver) { _driver = driver ?? throw new ArgumentNullException(nameof(driver)); }
public BowlingSteps(BowlingDriver bowlingDriver) { _bowlingDriver = bowlingDriver; }