public MethodAwareClient(ILotsOfMethods lotsOfMethods) : base(lotsOfMethods) { }
protected LotsOfMethodsDecorator(ILotsOfMethods lotsOfMethods) { this.LotsOfMethodsToBeDecorated = lotsOfMethods; }
public Method1Client(ILotsOfMethods lotsOfMethods) : base(lotsOfMethods) { }
public Some3rdPartQueryWrapper(Some3rdPartyQuery query, ILotsOfMethods lotsOfMethods) : base(lotsOfMethods) { this.Query = query; }