// Add the given car to the car pool public void AddCarToPool(Car aCar) { carList.Add(aCar.GetLicensePlate(), aCar); }
// Add the given car to the car pool public void AddCarToPool(Car aCar) { // Complete this method }