Example #1
0
 public Implementation_6_IInterface_3_Dependant(IInterface_3 <T> dep)
 {
     Interface3 = dep;
 }
Example #2
0
 public MyProxyWithDependency(IInterface_3 <int> dependency, IInterface_2 target) : base(target)
 {
     Dependency = dependency;
 }