public BatchManager(ITestFileQueue testFileQueue, ObjectCache objectCache, ITestFileResultFactory testFileResultFactory) { _testFileQueue = testFileQueue; _objectCache = objectCache; _testFileResultFactory = testFileResultFactory; }
public TasksController(ITestFileQueue fileQueue, ITestFileResultFactory testFileResultFactory, IBatchManager batchManager) { _fileQueue = fileQueue; _testFileResultFactory = testFileResultFactory; _batchManager = batchManager; }
public TasksCleanupJob(IConfiguration configuration, ITestFileQueue testFileQueue) { _configuration = configuration; _testFileQueue = testFileQueue; }