Esempio n. 1
0
        public int GetTotalPrice()
        {
            int totalPrice = 0;

            foreach (var discount in _discounts)
            {
                totalPrice += _discountCalculator.GetTotalPriceForProducts(discount, _products);
            }

            return(totalPrice);
        }