public IShippingService CreateShippingService(string accountName, string accountId)
        {
            SetSecurityProtocol();
            var shippingCredentials = new ShippingService.APICredentials {
                DeveloperKey = this._developerKey, Password = this._developerPassword
            };

            return(new Shipping.ShippingService(shippingCredentials, accountName, accountId));
        }
 public IShippingService CreateShippingService( string accountName, string accountId )
 {
     var shippingCredentials = new ShippingService.APICredentials { DeveloperKey = this._developerKey, Password = this._developerPassword };
     return new Shipping.ShippingService( shippingCredentials, accountName, accountId );
 }