Agathas.Storefront.Shopping.Baskets.Events.BasketPriceChanged.BasketPriceChanged C# (CSharp) Method

BasketPriceChanged() public method

public BasketPriceChanged ( System.Guid basket_id, Agathas.Storefront.Common.Money cost_of_basket, Agathas.Storefront.Common.Money discount ) : System
basket_id System.Guid
cost_of_basket Agathas.Storefront.Common.Money
discount Agathas.Storefront.Common.Money
return System
        public BasketPriceChanged(Guid basket_id, Money cost_of_basket, Money discount)
        {
            this.basket_id = basket_id;
            CostOfBasket = cost_of_basket;
            Discount = discount;
        }
BasketPriceChanged