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