public GatewayServiceClient(Guid merchantKey, Uri hostUri, NameValueCollection customHeaders)
 {
     this._sale       = new SaleResource(merchantKey, hostUri, customHeaders);
     this._creditCard = new CreditCardResource(merchantKey, hostUri, customHeaders);
     this._buyer      = new BuyerResource(merchantKey, hostUri, customHeaders);
     this._token      = new TokenResource(merchantKey, hostUri, customHeaders);
 }
 public GatewayServiceClient(Guid merchantKey, PlatformEnvironment environment, HttpContentTypeEnum httpContentType, Uri hostUri)
 {
     this._sale = new SaleResource(merchantKey, environment, httpContentType, hostUri);
     this._creditCard = new CreditCardResource(merchantKey, environment, httpContentType, hostUri);
 }
 public GatewayServiceClient(Guid merchantKey, PlatformEnvironment environment, HttpContentTypeEnum httpContentType, Uri hostUri)
 {
     this._sale       = new SaleResource(merchantKey, environment, httpContentType, hostUri);
     this._creditCard = new CreditCardResource(merchantKey, environment, httpContentType, hostUri);
 }
        public GatewayServiceClient(Guid merchantKey, Uri hostUri, NameValueCollection customHeaders) {

            this._sale = new SaleResource(merchantKey, hostUri, customHeaders);
            this._creditCard = new CreditCardResource(merchantKey, hostUri, customHeaders);
        }