public DoActionAddLineItem(
     CommerceCommander commerceCommander,
     GetCartCommand getCartCommand,
     AddCartLineCommand addCartLineCommand)
 {
     this._getCartCommand     = getCartCommand;
     this._commerceCommander  = commerceCommander;
     this._addCartLineCommand = addCartLineCommand;
 }
 public DoActionRemoveVoucher(
     CommerceCommander commerceCommander,
     GetCartCommand getCartCommand,
     RemoveCouponCommand removeCouponCommand)
 {
     this._getCartCommand      = getCartCommand;
     this._commerceCommander   = commerceCommander;
     this._removeCouponCommand = removeCouponCommand;
 }
Example #3
0
 public DoActionAddPhysicalFulfillment(
     CommerceCommander commerceCommander,
     GetCartCommand getCartCommand,
     SetCartFulfillmentCommand setCartFulfillmentCommand)
 {
     this._getCartCommand            = getCartCommand;
     this._commerceCommander         = commerceCommander;
     this._setCartFulfillmentCommand = setCartFulfillmentCommand;
 }
 public DoActionRemoveGiftCardPayment(
     CommerceCommander commerceCommander,
     GetCartCommand getCartCommand,
     RemovePaymentsCommand removePaymentsCommand)
 {
     this._getCartCommand        = getCartCommand;
     this._commerceCommander     = commerceCommander;
     this._removePaymentsCommand = removePaymentsCommand;
 }
Example #5
0
 public DoActionRemoveLineItem(
     CommerceCommander commerceCommander,
     GetCartCommand getCartCommand,
     RemoveCartLineCommand RemoveCartLineCommand)
 {
     this._getCartCommand        = getCartCommand;
     this._commerceCommander     = commerceCommander;
     this._removeCartLineCommand = RemoveCartLineCommand;
 }
 public DoActionAddVoucher(
     CommerceCommander commerceCommander,
     GetCartCommand getCartCommand,
     AddCouponCommand addCouponCommand)
 {
     this._getCartCommand    = getCartCommand;
     this._commerceCommander = commerceCommander;
     this._addCouponCommand  = addCouponCommand;
 }
Example #7
0
 public DoActionAddGiftCardPayment(
     CommerceCommander commerceCommander,
     GetCartCommand getCartCommand,
     AddPaymentsCommand addPaymentsCommand)
 {
     this._getCartCommand     = getCartCommand;
     this._commerceCommander  = commerceCommander;
     this._addPaymentsCommand = addPaymentsCommand;
 }
 public DoActionEditLineItem(
     CommerceCommander commerceCommander,
     GetCartCommand getCartCommand,
     UpdateCartLineCommand updateCartLineCommand,
     RemoveCartLineCommand removeCartLineCommand)
 {
     this._getCartCommand        = getCartCommand;
     this._commerceCommander     = commerceCommander;
     this._updateCartLineCommand = updateCartLineCommand;
     this._removeCartLineCommand = removeCartLineCommand;
 }
Example #9
0
 public FormRemoveVoucher(CommerceCommander commerceCommander, GetCartCommand getCartCommand)
 {
     this._commerceCommander = commerceCommander;
     this._getCartCommand    = getCartCommand;
 }
Example #10
0
 public EntityViewCart(GetCartCommand getCartCommand, ViewCommander viewCommander)
 {
     this._getCartCommand = getCartCommand;
     this._viewCommander  = viewCommander;
 }
 public FormRemoveGiftCardPayment(CommerceCommander commerceCommander, GetCartCommand getCartCommand)
 {
     this._commerceCommander = commerceCommander;
     this._getCartCommand    = getCartCommand;
 }
 public FormAddLineItem(CommerceCommander commerceCommander, GetCartCommand getCartCommand)
 {
     this._commerceCommander = commerceCommander;
     this._getCartCommand    = getCartCommand;
 }
Example #13
0
 public FormAddPhysicalFulfillment(CommerceCommander commerceCommander, GetCartCommand getCartCommand)
 {
     this._commerceCommander = commerceCommander;
     this._getCartCommand    = getCartCommand;
 }