public bool SendMMS(string subject, string phone, string callback, string msg, List <string> files) { try { return(repository.SendMMS(subject, phone, callback, msg, files)); } catch (Exception e) { logger.Error("[Sms Service] Send MMS error: " + e.Message); return(false); } }