public TypeWithTwoConstructors(ISimple argOne, IAnother argTwo, string somethingElse)
 {
 }
 public TypeWithTwoConstructors(ISimple argOne, IAnother argTwo)
 {
     _argOne = argOne;
     _argTwo = argTwo;
 }
 public Aggregator(IDepend depend, IAnother another)
 {
     _depend = depend;
     _another = another;
 }
Exemple #4
0
 public TypeWithTwoConstructors(ISimple argOne, IAnother argTwo, string somethingElse)
 {
 }
Exemple #5
0
 public TypeWithTwoConstructors(ISimple argOne, IAnother argTwo)
 {
     _argOne = argOne;
     _argTwo = argTwo;
 }
 public Aggregator(IDepend depend, IAnother another)
 {
     _depend  = depend;
     _another = another;
 }