예제 #1
0
 public Implementation_6_IInterface_3_Dependant(IInterface_3 <T> dep)
 {
     Interface3 = dep;
 }
예제 #2
0
파일: Proxy.cs 프로젝트: Sholtee/injector
 public MyProxyWithDependency(IInterface_3 <int> dependency, IInterface_2 target) : base(target)
 {
     Dependency = dependency;
 }