Exemplo n.º 1
0
 public System.Threading.Tasks.Task <SmsService.SendBulkSmsResponse> SendBulkSmsAsync(string user_id, string password, string sms_tmpl_id, string mobile_no, string sms)
 {
     SmsService.SendBulkSmsRequest inValue = new SmsService.SendBulkSmsRequest();
     inValue.Body             = new SmsService.SendBulkSmsRequestBody();
     inValue.Body.user_id     = user_id;
     inValue.Body.password    = password;
     inValue.Body.sms_tmpl_id = sms_tmpl_id;
     inValue.Body.mobile_no   = mobile_no;
     inValue.Body.sms         = sms;
     return(((SmsService.SmsManagerSoap)(this)).SendBulkSmsAsync(inValue));
 }
Exemplo n.º 2
0
 System.Threading.Tasks.Task <SmsService.SendBulkSmsResponse> SmsService.SmsManagerSoap.SendBulkSmsAsync(SmsService.SendBulkSmsRequest request)
 {
     return(base.Channel.SendBulkSmsAsync(request));
 }