Ejemplo n.º 1
0
        public System.Threading.Tasks.Task <PaymentVerificationWithExtraResponse> PaymentVerificationWithExtraAsync(string MerchantID, string Authority, int Amount)
        {
            PaymentVerificationWithExtraRequest inValue = new PaymentVerificationWithExtraRequest();

            inValue.Body            = new PaymentVerificationWithExtraRequestBody();
            inValue.Body.MerchantID = MerchantID;
            inValue.Body.Authority  = Authority;
            inValue.Body.Amount     = Amount;
            return(((PaymentGatewayImplementationServicePortType)(this)).PaymentVerificationWithExtraAsync(inValue));
        }
Ejemplo n.º 2
0
        public int PaymentVerificationWithExtra(string MerchantID, string Authority, int Amount, out long RefID, out string ExtraDetail)
        {
            PaymentVerificationWithExtraRequest inValue = new PaymentVerificationWithExtraRequest();

            inValue.Body            = new PaymentVerificationWithExtraRequestBody();
            inValue.Body.MerchantID = MerchantID;
            inValue.Body.Authority  = Authority;
            inValue.Body.Amount     = Amount;
            PaymentVerificationWithExtraResponse retVal = ((PaymentGatewayImplementationServicePortType)(this)).PaymentVerificationWithExtra(inValue);

            RefID       = retVal.Body.RefID;
            ExtraDetail = retVal.Body.ExtraDetail;
            return(retVal.Body.Status);
        }
Ejemplo n.º 3
0
 System.Threading.Tasks.Task <PaymentVerificationWithExtraResponse> PaymentGatewayImplementationServicePortType.PaymentVerificationWithExtraAsync(PaymentVerificationWithExtraRequest request)
 {
     return(base.Channel.PaymentVerificationWithExtraAsync(request));
 }
Ejemplo n.º 4
0
 PaymentVerificationWithExtraResponse PaymentGatewayImplementationServicePortType.PaymentVerificationWithExtra(PaymentVerificationWithExtraRequest request)
 {
     return(base.Channel.PaymentVerificationWithExtra(request));
 }