public DerivedConstructorDependenciesObject( ITestObject spouse1, ITestObject spouse2, IndexedTestObject other, int age, string name) : base(spouse1, spouse2, other) { Age = age; Name = name; }
public DerivedConstructorDependenciesObject( ITestObject spouse1, ITestObject spouse2, IndexedTestObject other, int age, int otherAge) : base(spouse1, spouse2, other) { }
public DerivedConstructorDependenciesObject( ITestObject spouse1, object spouse2, IndexedTestObject other) : base(spouse1, null, other) { }
public ConstructorDependenciesObject(ITestObject spouse1, ITestObject spouse2, IndexedTestObject other) { this.spouse1 = spouse1; this.spouse2 = spouse2; this.other = other; }