Пример #1
0
 public DoActionRemoveLineItem(
     CommerceCommander commerceCommander,
     GetCartCommand getCartCommand,
     RemoveCartLineCommand RemoveCartLineCommand)
 {
     this._getCartCommand        = getCartCommand;
     this._commerceCommander     = commerceCommander;
     this._removeCartLineCommand = RemoveCartLineCommand;
 }
 public DoActionEditLineItem(
     CommerceCommander commerceCommander,
     GetCartCommand getCartCommand,
     UpdateCartLineCommand updateCartLineCommand,
     RemoveCartLineCommand removeCartLineCommand)
 {
     this._getCartCommand        = getCartCommand;
     this._commerceCommander     = commerceCommander;
     this._updateCartLineCommand = updateCartLineCommand;
     this._removeCartLineCommand = removeCartLineCommand;
 }