コード例 #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;
 }