예제 #1
0
        public string GetReducedPrice()
        {
            decimal total = 0;

            for (int i = 0; i < Promotions.Count; i++)
            {
                var prom = Promotions.ElementAt(i);
                total += prom.ReducedAmount;
            }

            return(total.ToString());
        }