Example #1
0
 public bool SendSMS(string phone, string callback, string msg)
 {
     try {
         return(repository.SendSMS(phone, callback, msg));
     } catch (Exception e) {
         logger.Error("[Sms Service] Send SMS error: " + e.Message);
         return(false);
     }
 }