public System.Threading.Tasks.Task <SmsService.SendCustomBulkSmsResponse> SendCustomBulkSmsAsync(string user_id, string password, string sms_type_id, string sms_tmpl_id, string mobile_no, string sms) { SmsService.SendCustomBulkSmsRequest inValue = new SmsService.SendCustomBulkSmsRequest(); inValue.Body = new SmsService.SendCustomBulkSmsRequestBody(); inValue.Body.user_id = user_id; inValue.Body.password = password; inValue.Body.sms_type_id = sms_type_id; inValue.Body.sms_tmpl_id = sms_tmpl_id; inValue.Body.mobile_no = mobile_no; inValue.Body.sms = sms; return(((SmsService.SmsManagerSoap)(this)).SendCustomBulkSmsAsync(inValue)); }
System.Threading.Tasks.Task <SmsService.SendCustomBulkSmsResponse> SmsService.SmsManagerSoap.SendCustomBulkSmsAsync(SmsService.SendCustomBulkSmsRequest request) { return(base.Channel.SendCustomBulkSmsAsync(request)); }