Пример #1
0
 public BatchManager(ITestFileQueue testFileQueue, ObjectCache objectCache, ITestFileResultFactory testFileResultFactory)
 {
     _testFileQueue         = testFileQueue;
     _objectCache           = objectCache;
     _testFileResultFactory = testFileResultFactory;
 }
Пример #2
0
 public TasksController(ITestFileQueue fileQueue, ITestFileResultFactory testFileResultFactory, IBatchManager batchManager)
 {
     _fileQueue             = fileQueue;
     _testFileResultFactory = testFileResultFactory;
     _batchManager          = batchManager;
 }
Пример #3
0
 public TasksCleanupJob(IConfiguration configuration, ITestFileQueue testFileQueue)
 {
     _configuration = configuration;
     _testFileQueue = testFileQueue;
 }