예제 #1
0
 public ClassD(IRegularParameterlessService Service, string SomeString, int TheNumber, ComplexClass complexClass = null)
 {
     this.service    = Service;
     this.SomeString = SomeString;
     this.TheNumber  = TheNumber;
     this.Complex    = complexClass;
 }
예제 #2
0
 public ClassE(IRegularParameterlessService Service, string SomeString, int TheNumber, ComplexClass complexClass = null, HttpMessageHandler handler = null)
 {
     this.service    = Service;
     this.SomeString = SomeString;
     this.TheNumber  = TheNumber;
     this.Complex    = complexClass;
     this.Handler    = handler;
 }
예제 #3
0
 public ClassC(IRegularParameterlessService Service, string SomeString, int TheNumber)
 {
     this.service    = Service;
     this.SomeString = SomeString;
     this.TheNumber  = TheNumber;
 }
예제 #4
0
 public ClassA(ITestService Service, IRegularParameterlessService regularParameterlessService)
 {
     this.service = Service;
     this.regularParameterlessService = regularParameterlessService;
 }