Agathas.Storefront.Shopping.Commands.RemoveCouponFromBasketCommand.RemoveCouponFromBasketCommand C# (CSharp) Method

RemoveCouponFromBasketCommand() public method

public RemoveCouponFromBasketCommand ( System.Guid basket_id, string couponCode ) : System
basket_id System.Guid
couponCode string
return System
        public RemoveCouponFromBasketCommand(Guid basket_id, string couponCode)
        {
            _couponCode = couponCode;
            _basket_id = basket_id;
        }
RemoveCouponFromBasketCommand