public System.Threading.Tasks.Task <zarinpal.ServiceReference.PaymentVerificationResponse> PaymentVerificationAsync(string MerchantID, string Authority, int Amount)
 {
     zarinpal.ServiceReference.PaymentVerificationRequest inValue = new zarinpal.ServiceReference.PaymentVerificationRequest();
     inValue.Body            = new zarinpal.ServiceReference.PaymentVerificationRequestBody();
     inValue.Body.MerchantID = MerchantID;
     inValue.Body.Authority  = Authority;
     inValue.Body.Amount     = Amount;
     return(((zarinpal.ServiceReference.PaymentGatewayImplementationServicePortType)(this)).PaymentVerificationAsync(inValue));
 }
 public int PaymentVerification(string MerchantID, string Authority, int Amount, out long RefID)
 {
     zarinpal.ServiceReference.PaymentVerificationRequest inValue = new zarinpal.ServiceReference.PaymentVerificationRequest();
     inValue.Body            = new zarinpal.ServiceReference.PaymentVerificationRequestBody();
     inValue.Body.MerchantID = MerchantID;
     inValue.Body.Authority  = Authority;
     inValue.Body.Amount     = Amount;
     zarinpal.ServiceReference.PaymentVerificationResponse retVal = ((zarinpal.ServiceReference.PaymentGatewayImplementationServicePortType)(this)).PaymentVerification(inValue);
     RefID = retVal.Body.RefID;
     return(retVal.Body.Status);
 }
 System.Threading.Tasks.Task <zarinpal.ServiceReference.PaymentVerificationResponse> zarinpal.ServiceReference.PaymentGatewayImplementationServicePortType.PaymentVerificationAsync(zarinpal.ServiceReference.PaymentVerificationRequest request)
 {
     return(base.Channel.PaymentVerificationAsync(request));
 }
 zarinpal.ServiceReference.PaymentVerificationResponse zarinpal.ServiceReference.PaymentGatewayImplementationServicePortType.PaymentVerification(zarinpal.ServiceReference.PaymentVerificationRequest request)
 {
     return(base.Channel.PaymentVerification(request));
 }