public ScenarioTestHelperLocal(ICostCentreRepository costCentreRepository, IUserRepository userRepository, IConfigService configService, IMainOrderFactory mainOrderFactory, IMainOrderRepository mainOrderRepository, IOrderWorkflow orderWorkflow, ISendPendingEnvelopeCommandsService sendPendingEnvelopeCommandsService, IReceiveAndProcessPendingRemoteCommandEnvelopesService sync)
 {
     _costCentreRepository = costCentreRepository;
     _userRepository = userRepository;
     _configService = configService;
     _mainOrderFactory = mainOrderFactory;
     _mainOrderRepository = mainOrderRepository;
     _orderWorkflow = orderWorkflow;
     _sendPendingEnvelopeCommandsService = sendPendingEnvelopeCommandsService;
     _sync = sync;
 }
            public ScenarioTestHelperLocal(IProductRepository productRepository, IInventoryRepository inventoryRepository, IConfigService configService, ICostCentreRepository costCentreRepository, IUserRepository userRepository, IOutgoingCommandEnvelopeQueueRepository outgoingCommandEnvelopeQueueRepository, IInventoryTransferNoteFactory inventoryTransferNoteFactory, IInventoryTransferNoteRepository inventoryTransferNoteRepository, IConfirmInventoryTransferNoteWFManager transferNoteWfManager, ISendPendingEnvelopeCommandsService sendPendingEnvelopeCommandsService)
            {
                _productRepository = productRepository;
                _inventoryRepository = inventoryRepository;
                _configService = configService;
                _costCentreRepository = costCentreRepository;


                _userRepository = userRepository;

                _outgoingCommandEnvelopeQueueRepository = outgoingCommandEnvelopeQueueRepository;
                _inventoryTransferNoteFactory = inventoryTransferNoteFactory;
                _inventoryTransferNoteRepository = inventoryTransferNoteRepository;
                _transferNoteWfManager = transferNoteWfManager;
                _sendPendingEnvelopeCommandsService = sendPendingEnvelopeCommandsService;
            }
示例#3
0
 public ScenarioTestHelperLocal(IConfigService configService, IProductRepository productRepository, IUserRepository userRepository, IInventoryRepository inventoryRepository, ICostCentreRepository costCentreRepository, IInventoryAdjustmentNoteFactory inventoryAdjustmentNoteFactory, IInventoryAdjustmentNoteWfManager inventoryAdjustmentNoteWfManager, ISendPendingEnvelopeCommandsService sendPendingEnvelopeCommandsService)
 {
     _configService = configService;
     _productRepository = productRepository;
     _userRepository = userRepository;
     _inventoryRepository = inventoryRepository;
     _costCentreRepository = costCentreRepository;
     _inventoryAdjustmentNoteFactory = inventoryAdjustmentNoteFactory;
     _inventoryAdjustmentNoteWfManager = inventoryAdjustmentNoteWfManager;
     _sendPendingEnvelopeCommandsService = sendPendingEnvelopeCommandsService;
 }
 public ScenarioTestHelperLocal(ICostCentreRepository costCentreRepository, IUserRepository userRepository, IConfigService configService, IPaymentNoteRepository paymentNoteRepository, IConfirmPaymentNoteWFManager confirmPaymentNoteWfManager, IOutgoingCommandEnvelopeQueueRepository outgoingCommandEnvelopeQueueRepository, IDocumentFactory documentFactory, ISendPendingEnvelopeCommandsService sendPendingEnvelopeCommandsService)
 {
     _costCentreRepository = costCentreRepository;
     _userRepository = userRepository;
     _configService = configService;
     _paymentNoteRepository = paymentNoteRepository;
     _confirmPaymentNoteWfManager = confirmPaymentNoteWfManager;
     _outgoingCommandEnvelopeQueueRepository = outgoingCommandEnvelopeQueueRepository;
     _documentFactory = documentFactory;
     _sendPendingEnvelopeCommandsService = sendPendingEnvelopeCommandsService;
 }
 public ScenarioTestHelperLocal(ICostCentreRepository costCentreRepository, IUserRepository userRepository, IConfigService configService, IOutgoingCommandEnvelopeQueueRepository outgoingCommandEnvelopeQueueRepository, IReceiptRepository receiptRepository, IReceiptFactory receiptFactory, IReceiptWorkFlowManager receiptWorkFlowManager, ISendPendingEnvelopeCommandsService sendPendingEnvelopeCommandsService)
 {
     _costCentreRepository = costCentreRepository;
     _userRepository = userRepository;
     _configService = configService;
     _outgoingCommandEnvelopeQueueRepository = outgoingCommandEnvelopeQueueRepository;
     _receiptRepository = receiptRepository;
     _receiptFactory = receiptFactory;
     _receiptWorkFlowManager = receiptWorkFlowManager;
     _sendPendingEnvelopeCommandsService = sendPendingEnvelopeCommandsService;
 }
 public ScenarioTestHelperLocal(ICostCentreRepository costCentreRepository, IUserRepository userRepository, IConfigService configService, ICreditNoteFactory creditNoteFactory, ICreditNoteRepository creditNoteRepository, IConfirmCreditNoteWFManager confirmCreditNoteWfManager, ISendPendingEnvelopeCommandsService sendPendingEnvelopeCommandsService)
 {
     _costCentreRepository = costCentreRepository;
     _userRepository = userRepository;
     _configService = configService;
     _creditNoteFactory = creditNoteFactory;
     _creditNoteRepository = creditNoteRepository;
     _confirmCreditNoteWfManager = confirmCreditNoteWfManager;
     _sendPendingEnvelopeCommandsService = sendPendingEnvelopeCommandsService;
 }
示例#7
0
 public ScenarioTestHelperLocal(ICostCentreRepository costCentreRepository, IUserRepository userRepository, IConfigService configService, IInvoiceFactory invoiceFactory, IInvoiceRepository invoiceRepository, IConfirmInvoiceWorkFlowManager confirmInvoiceWorkFlowManager,ISendPendingEnvelopeCommandsService sendPendingEnvelopeCommandsService)
 {
     _costCentreRepository = costCentreRepository;
     _userRepository = userRepository;
     _configService = configService;
     _invoiceFactory = invoiceFactory;
     _invoiceRepository = invoiceRepository;
     _confirmInvoiceWorkFlowManager = confirmInvoiceWorkFlowManager;
     _sendPendingEnvelopeCommandsService = sendPendingEnvelopeCommandsService;
 }