Esempio n. 1
0
        public double totalAliments()
        {
            double total = 0;

            IEnumerable <Product> list = miStore.GetProducts(0);

            foreach (Product p in list)
            {
                Console.WriteLine(p);
                total += p.Price;
            }
            return(total);
        }