public Product(int price, ProductsGroups productsClassifications, List <Supplement> supplements = null) { Price = price; ClassProduct = productsClassifications; if (supplements != null) { Supplements = supplements; } }
public Water(int price, ProductsGroups productsClassifications, List <Supplement> supplements = null) : base(price, productsClassifications, supplements) { Name = "Вода"; }