Exemple #1
0
        public System.Threading.Tasks.Task <RefreshAuthorityResponse> RefreshAuthorityAsync(string MerchantID, string Authority, int ExpireIn)
        {
            RefreshAuthorityRequest inValue = new RefreshAuthorityRequest();

            inValue.Body            = new RefreshAuthorityRequestBody();
            inValue.Body.MerchantID = MerchantID;
            inValue.Body.Authority  = Authority;
            inValue.Body.ExpireIn   = ExpireIn;
            return(((PaymentGatewayImplementationServicePortType)(this)).RefreshAuthorityAsync(inValue));
        }
Exemple #2
0
        public int RefreshAuthority(string MerchantID, string Authority, int ExpireIn)
        {
            RefreshAuthorityRequest inValue = new RefreshAuthorityRequest();

            inValue.Body            = new RefreshAuthorityRequestBody();
            inValue.Body.MerchantID = MerchantID;
            inValue.Body.Authority  = Authority;
            inValue.Body.ExpireIn   = ExpireIn;
            RefreshAuthorityResponse retVal = ((PaymentGatewayImplementationServicePortType)(this)).RefreshAuthority(inValue);

            return(retVal.Body.Status);
        }
Exemple #3
0
 System.Threading.Tasks.Task <RefreshAuthorityResponse> PaymentGatewayImplementationServicePortType.RefreshAuthorityAsync(RefreshAuthorityRequest request)
 {
     return(base.Channel.RefreshAuthorityAsync(request));
 }
Exemple #4
0
 RefreshAuthorityResponse PaymentGatewayImplementationServicePortType.RefreshAuthority(RefreshAuthorityRequest request)
 {
     return(base.Channel.RefreshAuthority(request));
 }