public TestService11_Decorator2(ITestService11 testService11, ITestService10 testService10)
 {
     TestService11        = testService11;
     TestService10FromIOC = testService10;
 }
 public TestService11_Decorator1(ITestService11 testService11)
 {
     TestService11 = testService11;
 }
Exemple #3
0
 public TestService12(ITestService11 testService11)
 {
     TestService11 = testService11;
 }
Exemple #4
0
 public TestService12WithMixedConcreteDependency(ITestService11 testService11)
 {
     TestService11 = testService11;
 }
 public CompositeTestService13(ITestService10 testService10, ITestService11 testService11, ITestService12 testService12)
 {
     TestService10 = testService10;
     TestService11 = testService11;
     TestService12 = testService12;
 }