Пример #1
0
 public TestService(ITestDomain testDomain)
 {
     this._testDomain = testDomain;
 }
Пример #2
0
 public SampleController(IServiceProvider serviceProvider)
 {
     testDomain = serviceProvider.GetRequiredService <ITestDomain>();
 }
Пример #3
0
 public SampleController(IFactory factory)
 {
     testDomain = factory.GetDomain <TestDomain>();
 }