/// <summary> /// Initializes a new instance of the <see cref="CommandCountAmountOfAuto"/> class. /// </summary> /// <param name="data"> /// The data. /// </param> public CommandCountAmountOfAuto(AutoDatabase data) { this.data = data; }
/// <summary> /// Initializes a new instance of the <see cref="CommandCountBrands"/> class. /// </summary> /// <param name="data"> /// The data. /// </param> public CommandCountBrands(AutoDatabase data) { this.data = data; }
/// <summary> /// Initializes a new instance of the <see cref="CommandGetAvrPriceByBrand"/> class. /// </summary> /// <param name="data"> /// The data. /// </param> /// <param name="brandName"> /// The brand name. /// </param> public CommandGetAvrPriceByBrand(AutoDatabase data, string brandName) { this.data = data; this.brandName = brandName; }
/// <summary> /// Initializes a new instance of the <see cref="CommandGetAveragePrice"/> class. /// </summary> /// <param name="data"> /// The data. /// </param> public CommandGetAveragePrice(AutoDatabase data) { this.data = data; }