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