/// <summary> /// Class constructor /// </summary> /// <param name="carShowroom"></param> public ClientManager(CarShowroom carShowroom) { this.carShowroom = carShowroom; }
public CountAllCommand(CarShowroom carShowroom) { _carShowroom = carShowroom; }
public CountTypesCommand(CarShowroom carShowroom) { _carShowroom = carShowroom; }
public AveragePriceTypeCommand(CarShowroom carShowroom, string brand) { _carShowroom = carShowroom; _brand = brand; }
public AveragePriceCommand(CarShowroom carShowroom) { _carShowroom = carShowroom; }