Пример #1
0
 public TestConstructorInjectionWithThreeParameters(
     ITestConstructorInjectionWithOneParameter param1,
     ITestConstructorInjectionWithOneParameter param2,
     ITestSingletonConcreteImplementationAttributeType param3)
 {
     Param1 = param1;
     Param2 = param2;
     Param3 = param3;
 }
Пример #2
0
 public TestConstructorInjectionWithOneParameterWithSingletonLifetime(ITestSingletonConcreteImplementationAttributeType param)
 {
     Param = param;
 }