예제 #1
0
파일: Graph.cs 프로젝트: Sholtee/injector
 public Implementation_2(IInterface_1 dep)
 {
 }
예제 #2
0
파일: Graph.cs 프로젝트: Sholtee/injector
 public Implementation_3(IInterface_1 dep1, IInterface_2 dep2)
 {
 }
예제 #3
0
 public Implementation_2_IInterface_1_Dependant(IInterface_1 interface1)
 {
     Interface1 = interface1;
 }
예제 #4
0
 public Implementation_10_RecursiveCDep(IInterface_1 dep)
 {
 }
예제 #5
0
 public Implementation_9_MultiCtor(IInterface_1 dep)
 {
     Interface1 = dep;
 }
예제 #6
0
 public ServiceHavingNonInterfaceCtorArg(string para, IInterface_1 unused) => CtorParam = para;
예제 #7
0
파일: Select.cs 프로젝트: Sholtee/injector
 public GenericImplementation_2(IInterface_1 dep) => Interface1 = dep;