예제 #1
0
 public TasksController(ITestFileQueue fileQueue, ITestFileResultFactory testFileResultFactory, IBatchManager batchManager)
 {
     _fileQueue             = fileQueue;
     _testFileResultFactory = testFileResultFactory;
     _batchManager          = batchManager;
 }
예제 #2
0
 public BatchManager(ITestFileQueue testFileQueue, ObjectCache objectCache, ITestFileResultFactory testFileResultFactory)
 {
     _testFileQueue         = testFileQueue;
     _objectCache           = objectCache;
     _testFileResultFactory = testFileResultFactory;
 }