Beispiel #1
0
 public MethodAwareClient(ILotsOfMethods lotsOfMethods)
     : base(lotsOfMethods)
 {
 }
Beispiel #2
0
 protected LotsOfMethodsDecorator(ILotsOfMethods lotsOfMethods)
 {
     this.LotsOfMethodsToBeDecorated = lotsOfMethods;
 }
 public Method1Client(ILotsOfMethods lotsOfMethods)
     : base(lotsOfMethods)
 {
 }
Beispiel #4
0
 public Some3rdPartQueryWrapper(Some3rdPartyQuery query, ILotsOfMethods lotsOfMethods)
     : base(lotsOfMethods)
 {
     this.Query = query;
 }