public RestSharpClient(string baseUrl, int connectionTimeout, IWebProxy proxy, ILogger logger)
 {
     this.adapter = new RestSharpAdapter();
     this.baseUrl = baseUrl;
     this.connectionTimeout = connectionTimeout;
     this.proxy = proxy;
     this.logger = logger;
 }
 public RestSharpClient(string baseUrl, int connectionTimeout, IWebProxy proxy, ILogger logger)
 {
     this.adapter           = new RestSharpAdapter();
     this.baseUrl           = baseUrl;
     this.connectionTimeout = connectionTimeout;
     this.proxy             = proxy;
     this.logger            = logger;
 }