public System.Threading.Tasks.Task <ZarinPalGateWay.PaymentRequestResponse> PaymentRequestAsync(string MerchantID, int Amount, string Description, string Email, string Mobile, string CallbackURL)
 {
     ZarinPalGateWay.PaymentRequestRequest inValue = new ZarinPalGateWay.PaymentRequestRequest();
     inValue.Body             = new ZarinPalGateWay.PaymentRequestRequestBody();
     inValue.Body.MerchantID  = MerchantID;
     inValue.Body.Amount      = Amount;
     inValue.Body.Description = Description;
     inValue.Body.Email       = Email;
     inValue.Body.Mobile      = Mobile;
     inValue.Body.CallbackURL = CallbackURL;
     return(((ZarinPalGateWay.PaymentGatewayImplementationServicePortType)(this)).PaymentRequestAsync(inValue));
 }
 System.Threading.Tasks.Task <ZarinPalGateWay.PaymentRequestResponse> ZarinPalGateWay.PaymentGatewayImplementationServicePortType.PaymentRequestAsync(ZarinPalGateWay.PaymentRequestRequest request)
 {
     return(base.Channel.PaymentRequestAsync(request));
 }