Exemplo n.º 1
0
 public TwoServicesForOneInterfaceTarget4(ITwoServicesForOneInterfaceService service, ITwoServicesForOneInterfaceOtherService service2) : base()
 {
     this.Service  = service;
     this.Service2 = service2;
 }
 public TwoServicesForOneInterfaceService3(int SomeNumber, ITwoServicesForOneInterfaceOtherService service) : base()
 {
     this.someNumber = SomeNumber;
     this.service    = service;
 }
 public TwoServicesForOneInterfaceService4(string SomeString, ITwoServicesForOneInterfaceOtherService service) : base()
 {
     this.someString = SomeString;
     this.service = service;
 }