Ejemplo n.º 1
0
        public static async Task <Cart> InitCart(this Cart cart, ICatalogGateway catalogGateway, bool isPopulatePrice = false)
        {
            if (cart == null)
            {
                cart = new Cart();
            }

            if (isPopulatePrice == false)
            {
                cart.CartItemPromoSavings = 0;
                cart.CartTotal            = 0;
                cart.ShippingPromoSavings = 0;
                cart.ShippingTotal        = 0;
                cart.CartItemTotal        = 0;
            }

            if (cart.CartItems != null)
            {
                foreach (var item in cart.CartItems)
                {
                    var product = await catalogGateway.GetProductByIdAsync(item.Product.ProductId);

                    if (product == null)
                    {
                        throw new Exception("Could not find product.");
                    }

                    item.Product      = new Product(product.Id, product.Name, product.Price, product.Desc);
                    item.Price        = product.Price;
                    item.PromoSavings = 0;
                }
            }

            return(cart);
        }
Ejemplo n.º 2
0
        public async Task <Cart> CalculateCartAsync(
            TaxType taxType, ICatalogGateway catalogGateway,
            IPromoGateway promoGateway, IShippingGateway shippingGateway)
        {
            if (CartItems != null && CartItems?.Count() > 0)
            {
                CartItemTotal = 0.0D;
                foreach (var cartItem in CartItems)
                {
                    var product = await catalogGateway.GetProductByIdAsync(cartItem.Product.ProductId);

                    if (product == null)
                    {
                        throw new Exception("Could not find product.");
                    }

                    cartItem
                    .FillUpProductInfo(product.Name, product.Price, product.Desc)
                    .ChangePrice(product.Price);

                    CartItemPromoSavings = CartItemPromoSavings + cartItem.PromoSavings * cartItem.Quantity;
                    CartItemTotal        = CartItemTotal + cartItem.Product.Price * cartItem.Quantity;
                }

                shippingGateway.CalculateShipping(this);
            }

            promoGateway.ApplyShippingPromotions(this);

            switch (taxType)
            {
            case TaxType.NoTax:
                CartTotal = CartItemTotal + ShippingTotal;
                break;

            case TaxType.TenPercentage:
                var cartTotal = CartItemTotal + ShippingTotal;
                CartTotal = cartTotal * 10 / 100 + cartTotal;
                break;

            default:
                throw new ArgumentOutOfRangeException(nameof(taxType), taxType, null);
            }

            return(this);
        }