Esempio n. 1
0
        public Product(int price, ProductsGroups productsClassifications, List <Supplement> supplements = null)
        {
            Price        = price;
            ClassProduct = productsClassifications;

            if (supplements != null)
            {
                Supplements = supplements;
            }
        }
Esempio n. 2
0
 public Water(int price, ProductsGroups productsClassifications, List <Supplement> supplements = null) : base(price, productsClassifications, supplements)
 {
     Name = "Вода";
 }