Exemplo n.º 1
0
 public CreateCustomersBlock(CommerceCommander commerceCommander, FindEntityPipeline findEntityPipeline, CreateCustomerPipeline createCustomerPipeline, PersistEntityPipeline persistEntityPipeline)
 {
     _commerceCommander      = commerceCommander;
     _findEntityPipeline     = findEntityPipeline;
     _createCustomerPipeline = createCustomerPipeline;
     _persistEntityPipeline  = persistEntityPipeline;
 }
 public AddWishlistCommand(
     PersistEntityPipeline persistEntityPipeline,
     IServiceProvider serviceProvider,
     GetCustomerCommand getCustomerCommand)
 {
     this._getCustomerCommand    = getCustomerCommand;
     this._persistEntityPipeline = persistEntityPipeline;
 }
Exemplo n.º 3
0
 public UpdateCustomerCommand(
     PersistEntityPipeline persistEntityPipeline,
     FindEntityCommand findEntityCommand,
     IServiceProvider serviceProvider,
     GetCustomerCommand getCustomerCommand,
     GetEntityViewCommand getEntityViewCommand,
     DoActionCommand doActionCommand)
     : base(serviceProvider)
 {
     this._getCustomerCommand    = getCustomerCommand;
     this._getEntityViewCommand  = getEntityViewCommand;
     this._doActionCommand       = doActionCommand;
     this._persistEntityPipeline = persistEntityPipeline;
     this._findEntityCommand     = findEntityCommand;
 }
 public ConnectSubaccountToMainAccountBlock(GetCustomerPipeline getCustomerPipeline, PersistEntityPipeline persistEntityPipeline)
 {
     _getCustomerPipeline   = getCustomerPipeline;
     _persistEntityPipeline = persistEntityPipeline;
 }
Exemplo n.º 5
0
 public DeleteMainAccountReferenceBlock(GetCustomerPipeline getCustomerPipeline, PersistEntityPipeline persistEntityPipeline)
 {
     _getCustomerPipeline   = getCustomerPipeline;
     _persistEntityPipeline = persistEntityPipeline;
 }