Example #1
0
 public TestController(ILogger <TestController> logger, IJobService jobService, IQueues queues, ITestListService testListService,
                       IOptions <ComposerSettings> composerSettings, IComposerService composerService)
 {
     _logger           = logger;
     _jobService       = jobService;
     _queues           = queues;
     _testListService  = testListService;
     _composerSettings = composerSettings;
     _composerService  = composerService;
 }
Example #2
0
 public TestController(ILogger <TestController> logger, ITestListService testListService)
 {
     _logger          = logger;
     _testListService = testListService;
 }
 public HomeController(ITestListService tls)
 {
     testListService = tls;
 }