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)); }
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); }
System.Threading.Tasks.Task <Manifest.ServiceReference.PaymentVerificationWithExtraResponse> Manifest.ServiceReference.PaymentGatewayImplementationServicePortType.PaymentVerificationWithExtraAsync(Manifest.ServiceReference.PaymentVerificationWithExtraRequest request) { return(base.Channel.PaymentVerificationWithExtraAsync(request)); }
Manifest.ServiceReference.PaymentVerificationWithExtraResponse Manifest.ServiceReference.PaymentGatewayImplementationServicePortType.PaymentVerificationWithExtra(Manifest.ServiceReference.PaymentVerificationWithExtraRequest request) { return(base.Channel.PaymentVerificationWithExtra(request)); }