Ejemplo n.º 1
0
 public System.Threading.Tasks.Task <Manifest.ServiceReference.PaymentVerificationWithExtraResponse> PaymentVerificationWithExtraAsync(string MerchantID, string Authority, int Amount)
 {
     Manifest.ServiceReference.PaymentVerificationWithExtraRequest inValue = new Manifest.ServiceReference.PaymentVerificationWithExtraRequest();
     inValue.Body            = new Manifest.ServiceReference.PaymentVerificationWithExtraRequestBody();
     inValue.Body.MerchantID = MerchantID;
     inValue.Body.Authority  = Authority;
     inValue.Body.Amount     = Amount;
     return(((Manifest.ServiceReference.PaymentGatewayImplementationServicePortType)(this)).PaymentVerificationWithExtraAsync(inValue));
 }
Ejemplo n.º 2
0
 public int PaymentVerificationWithExtra(string MerchantID, string Authority, int Amount, out long RefID, out string ExtraDetail)
 {
     Manifest.ServiceReference.PaymentVerificationWithExtraRequest inValue = new Manifest.ServiceReference.PaymentVerificationWithExtraRequest();
     inValue.Body            = new Manifest.ServiceReference.PaymentVerificationWithExtraRequestBody();
     inValue.Body.MerchantID = MerchantID;
     inValue.Body.Authority  = Authority;
     inValue.Body.Amount     = Amount;
     Manifest.ServiceReference.PaymentVerificationWithExtraResponse retVal = ((Manifest.ServiceReference.PaymentGatewayImplementationServicePortType)(this)).PaymentVerificationWithExtra(inValue);
     RefID       = retVal.Body.RefID;
     ExtraDetail = retVal.Body.ExtraDetail;
     return(retVal.Body.Status);
 }
Ejemplo n.º 3
0
 System.Threading.Tasks.Task <Manifest.ServiceReference.PaymentVerificationWithExtraResponse> Manifest.ServiceReference.PaymentGatewayImplementationServicePortType.PaymentVerificationWithExtraAsync(Manifest.ServiceReference.PaymentVerificationWithExtraRequest request)
 {
     return(base.Channel.PaymentVerificationWithExtraAsync(request));
 }
Ejemplo n.º 4
0
 Manifest.ServiceReference.PaymentVerificationWithExtraResponse Manifest.ServiceReference.PaymentGatewayImplementationServicePortType.PaymentVerificationWithExtra(Manifest.ServiceReference.PaymentVerificationWithExtraRequest request)
 {
     return(base.Channel.PaymentVerificationWithExtra(request));
 }