Example #1
0
 public System.Threading.Tasks.Task <scarfproject.ServiceReference1.PaymentVerificationResponse> PaymentVerificationAsync(string MerchantID, string Authority, int Amount)
 {
     scarfproject.ServiceReference1.PaymentVerificationRequest inValue = new scarfproject.ServiceReference1.PaymentVerificationRequest();
     inValue.Body            = new scarfproject.ServiceReference1.PaymentVerificationRequestBody();
     inValue.Body.MerchantID = MerchantID;
     inValue.Body.Authority  = Authority;
     inValue.Body.Amount     = Amount;
     return(((scarfproject.ServiceReference1.PaymentGatewayImplementationServicePortType)(this)).PaymentVerificationAsync(inValue));
 }
Example #2
0
 public int PaymentVerification(string MerchantID, string Authority, int Amount, out long RefID)
 {
     scarfproject.ServiceReference1.PaymentVerificationRequest inValue = new scarfproject.ServiceReference1.PaymentVerificationRequest();
     inValue.Body            = new scarfproject.ServiceReference1.PaymentVerificationRequestBody();
     inValue.Body.MerchantID = MerchantID;
     inValue.Body.Authority  = Authority;
     inValue.Body.Amount     = Amount;
     scarfproject.ServiceReference1.PaymentVerificationResponse retVal = ((scarfproject.ServiceReference1.PaymentGatewayImplementationServicePortType)(this)).PaymentVerification(inValue);
     RefID = retVal.Body.RefID;
     return(retVal.Body.Status);
 }
Example #3
0
 System.Threading.Tasks.Task <scarfproject.ServiceReference1.PaymentVerificationResponse> scarfproject.ServiceReference1.PaymentGatewayImplementationServicePortType.PaymentVerificationAsync(scarfproject.ServiceReference1.PaymentVerificationRequest request)
 {
     return(base.Channel.PaymentVerificationAsync(request));
 }
Example #4
0
 scarfproject.ServiceReference1.PaymentVerificationResponse scarfproject.ServiceReference1.PaymentGatewayImplementationServicePortType.PaymentVerification(scarfproject.ServiceReference1.PaymentVerificationRequest request)
 {
     return(base.Channel.PaymentVerification(request));
 }