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

AddProductToBasketCommand() public method

public AddProductToBasketCommand ( int productid, System.Guid basket_id ) : System
productid int
basket_id System.Guid
return System
        public AddProductToBasketCommand(int productid, Guid basket_id)
        {
            _productid = productid;
            _basket_id = basket_id;
        }
AddProductToBasketCommand