public ClassWithWidestConstructorInjection(IContainer cnt) { Object = null; }
public ClassWithWidestConstructorInjection(IContainer cnt, TestType @object) { Object = @object; }
public ClassWithConstructorParametersInjection(IContainer cnt, TestType @object = null) { Object = @object; }
public void Init(IContainer cnt, TestType @object = null) { Object = @object; }
public void SetObject(IContainer cnt, TestType obj = null) { Object = obj; }