示例#1
0
 public ClassWithWidestConstructorInjection(IContainer cnt)
 {
     Object = null;
 }
示例#2
0
 public ClassWithWidestConstructorInjection(IContainer cnt, TestType @object)
 {
     Object = @object;
 }
示例#3
0
 public ClassWithConstructorParametersInjection(IContainer cnt, TestType @object = null)
 {
     Object = @object;
 }
示例#4
0
 public void Init(IContainer cnt, TestType @object = null)
 {
     Object = @object;
 }
示例#5
0
 public void SetObject(IContainer cnt, TestType obj = null)
 {
     Object = obj;
 }