Example #1
0
 public System.Threading.Tasks.Task <Nop.Plugin.Payments.ZarinPal.wsZarinPal.PaymentVerificationWithExtraResponse> PaymentVerificationWithExtraAsync(string MerchantID, string Authority, int Amount)
 {
     Nop.Plugin.Payments.ZarinPal.wsZarinPal.PaymentVerificationWithExtraRequest inValue = new Nop.Plugin.Payments.ZarinPal.wsZarinPal.PaymentVerificationWithExtraRequest();
     inValue.Body            = new Nop.Plugin.Payments.ZarinPal.wsZarinPal.PaymentVerificationWithExtraRequestBody();
     inValue.Body.MerchantID = MerchantID;
     inValue.Body.Authority  = Authority;
     inValue.Body.Amount     = Amount;
     return(((Nop.Plugin.Payments.ZarinPal.wsZarinPal.PaymentGatewayImplementationServicePortType)(this)).PaymentVerificationWithExtraAsync(inValue));
 }
Example #2
0
 public int PaymentVerificationWithExtra(string MerchantID, string Authority, int Amount, out long RefID, out string ExtraDetail)
 {
     Nop.Plugin.Payments.ZarinPal.wsZarinPal.PaymentVerificationWithExtraRequest inValue = new Nop.Plugin.Payments.ZarinPal.wsZarinPal.PaymentVerificationWithExtraRequest();
     inValue.Body            = new Nop.Plugin.Payments.ZarinPal.wsZarinPal.PaymentVerificationWithExtraRequestBody();
     inValue.Body.MerchantID = MerchantID;
     inValue.Body.Authority  = Authority;
     inValue.Body.Amount     = Amount;
     Nop.Plugin.Payments.ZarinPal.wsZarinPal.PaymentVerificationWithExtraResponse retVal = ((Nop.Plugin.Payments.ZarinPal.wsZarinPal.PaymentGatewayImplementationServicePortType)(this)).PaymentVerificationWithExtra(inValue);
     RefID       = retVal.Body.RefID;
     ExtraDetail = retVal.Body.ExtraDetail;
     return(retVal.Body.Status);
 }
Example #3
0
 System.Threading.Tasks.Task <Nop.Plugin.Payments.ZarinPal.wsZarinPal.PaymentVerificationWithExtraResponse> Nop.Plugin.Payments.ZarinPal.wsZarinPal.PaymentGatewayImplementationServicePortType.PaymentVerificationWithExtraAsync(Nop.Plugin.Payments.ZarinPal.wsZarinPal.PaymentVerificationWithExtraRequest request)
 {
     return(base.Channel.PaymentVerificationWithExtraAsync(request));
 }
Example #4
0
 Nop.Plugin.Payments.ZarinPal.wsZarinPal.PaymentVerificationWithExtraResponse Nop.Plugin.Payments.ZarinPal.wsZarinPal.PaymentGatewayImplementationServicePortType.PaymentVerificationWithExtra(Nop.Plugin.Payments.ZarinPal.wsZarinPal.PaymentVerificationWithExtraRequest request)
 {
     return(base.Channel.PaymentVerificationWithExtra(request));
 }