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