public TestTypeWithConstructorArguments(ITestType testType, ITestType2 testType2)
        {
            if (testType == null)
            {
                throw new ArgumentNullException("testType");
            }

            if (testType2 == null)
            {
                throw new ArgumentNullException("testType2");
            }

            this._testType = testType;
            this._testType2 = testType2;
        }
 public TestTypeWithArguments(ITestType2 type2, ITestType3 type3)
 {
     Type2 = type2;
     Type3 = type3;
 }
 public TestTypeWithArguments(ITestType2 type2, ITestType3 type3, ITestType4 type4, int value)
 {
     Type2 = type2;
     Type3 = type3;
     Type4 = type4;
 }
 public TestTypeWithArgument(ITestType2 type2)
 {
     Type2 = type2;
 }
Beispiel #5
0
 public ConstructorTestType(ITestType testType, ITestType2 testType2)
 {
     TestType  = testType;
     TestType2 = testType2;
 }