コード例 #1
0
ファイル: MockTypes.cs プロジェクト: grahamrhay/opencontainer
 public TypeWithTwoConstructors(ISimple argOne, IAnother argTwo, string somethingElse)
 {
 }
コード例 #2
0
ファイル: MockTypes.cs プロジェクト: grahamrhay/opencontainer
 public TypeWithTwoConstructors(ISimple argOne, IAnother argTwo)
 {
     _argOne = argOne;
     _argTwo = argTwo;
 }
コード例 #3
0
 public Aggregator(IDepend depend, IAnother another)
 {
     _depend = depend;
     _another = another;
 }
コード例 #4
0
 public TypeWithTwoConstructors(ISimple argOne, IAnother argTwo, string somethingElse)
 {
 }
コード例 #5
0
 public TypeWithTwoConstructors(ISimple argOne, IAnother argTwo)
 {
     _argOne = argOne;
     _argTwo = argTwo;
 }
コード例 #6
0
 public Aggregator(IDepend depend, IAnother another)
 {
     _depend  = depend;
     _another = another;
 }