public CurrencyServices(IQueueContextFactory queueContextFactory)
 {
     this._queueContextFactory = queueContextFactory;
 }
Example #2
0
 public RestExecutor(IConfigurationReader configurationReader, IQueueContextFactory queueContextFactory, INodeQueueManager nodeQueueManager)
 {
     _configurationReader = configurationReader;
     _queueContextFactory = queueContextFactory;
     _nodeQueueManager    = nodeQueueManager;
 }
 public QueueTests()
 {
     this._contextFactory   = new InMemoryQueueContextFactory();
     this._currencyServices = new CurrencyServices(this._contextFactory);
 }