Ejemplo n.º 1
0
 public StlInventorySyncJob(ILog log, IInventorySyncRepository inventorySyncRepository,
                            IStlInventoryUpdateRepository stlInventoryUpdateRepository, IShipmentInventoryAdjustmentRepository shipmentInventoryAdjustmentRepository,
                            IPerpetualInventoryTransferRepository perpetualInventoryTransferRepository, IPixInventoryAdjustmentRepository pixInventoryAdjustmentRepository)
 {
     _log = log;
     //_stlInventoryRepository = stlInventory;
     _inventorySyncRepository               = inventorySyncRepository;
     _stlInventoryUpdateRepository          = stlInventoryUpdateRepository;
     _shipmentInventoryAdjustmentRepository = shipmentInventoryAdjustmentRepository;
     _perpetualInventoryTransferRepository  = perpetualInventoryTransferRepository;
     _pixInventoryAdjustmentRepository      = pixInventoryAdjustmentRepository;
 }
Ejemplo n.º 2
0
 public InventorySyncJob(ILog log,
                         IConfigurationManager configurationManager,
                         IJobRepository jobRepository,
                         ITransferControlRepository transferControlRepository,
                         IInventorySyncRepository inventorySyncRepository,
                         IFileIo fileIo,
                         ITransferControlConfigurationManager transferControlConfigurationManager,
                         IStlInventoryRepository stlInventoryRepository,
                         IStlInventoryUpdateRepository stlInventoryUpdateRepository,
                         IShipmentInventoryAdjustmentRepository shipmentInventoryAdjustmentRepository,
                         IPerpetualInventoryTransferRepository perpetualInventoryTransferRepository,
                         IPixInventoryAdjustmentRepository pixInventoryAdjustmentRepository)
     : base(log, configurationManager, fileIo, jobRepository, transferControlRepository, transferControlConfigurationManager)
 {
     _inventorySyncRepository               = inventorySyncRepository;
     _stlInventoryRepository                = stlInventoryRepository;
     _stlInventoryUpdateRepository          = stlInventoryUpdateRepository;
     _shipmentInventoryAdjustmentRepository = shipmentInventoryAdjustmentRepository;
     _perpetualInventoryTransferRepository  = perpetualInventoryTransferRepository;
     _pixInventoryAdjustmentRepository      = pixInventoryAdjustmentRepository;
     _log = log;
     _configurationManager = configurationManager;
 }
Ejemplo n.º 3
0
 public StlInventoryRepository(IInventorySyncRepository inventorySyncRepository)
 {
     _inventorySyncRepository = inventorySyncRepository;
 }