public TestService11_Decorator2(ITestService11 testService11, ITestService10 testService10)
 {
     TestService11        = testService11;
     TestService10FromIOC = testService10;
 }
Example #2
0
 public TestService11(ITestService10 testService10)
 {
     TestService10 = testService10;
 }
 public TestService10_Decorator1(ITestService10 testService10, DummyOne dummyValue)
 {
     TestService10 = testService10;
 }
 private void PrivateInject(ITestService10 testService10)
 {
     TestService10 = testService10;
 }
 public void Inject(ITestService10 testService10)
 {
     TestService10 = testService10;
 }
 public void FakeInject(ITestService10 testService10)
 {
     throw new NotImplementedException();
 }
Example #7
0
 public MultipleConstructorsClass(ITestService10 dummy)
 {
 }
 public CompositeTestService13(ITestService10 testService10, ITestService11 testService11, ITestService12 testService12)
 {
     TestService10 = testService10;
     TestService11 = testService11;
     TestService12 = testService12;
 }