Example #1
0
 /// <summary>
 /// Get sms by from number
 /// </summary>
 /// <param name="from"></param>
 /// <returns></returns>
 public SmsDomain GetSmsByFrom(string from)
 {
     ValidationHelper.IsPhoneNumberValid(from, NotificationMessages.SmsInvalidSenderPhoneNumberFormat);
     return(_smsRepository.GetByFrom(from));
 }