public TestOrionPlugin(
     IServer server, ILogger log,
     ITestSingletonService singletonService,
     ITestTransientService transientService) : base(server, log)
 {
     SingletonService = singletonService;
     TransientService = transientService;
     Value            = 100;
 }
Example #2
0
 public TestCancelerService(IApplicationCanceler applicationCanceler,
                            ITestSingletonService testSingletonService,
                            ITestTransientService testTransientService,
                            ITestScopedService testScopedService)
 {
     _applicationCanceller = applicationCanceler;
     _testSingletonService = testSingletonService;
     _testTransientService = testTransientService;
     _testScopedService    = testScopedService;
 }