/// <summary>
        /// Returns total of Cart
        /// </summary>
        public decimal GetTotal()
        {
            var cart = GetCart();

            var total = 0.0M;

            foreach (var item in cart)
            {
                total += (productUtil.GetPrice(item.Key) * item.Value);
            }
            return(total);
        }