Пример #1
0
 public void SendSMS(string phoneNumber, string body)
 {
     SaveSMSToFile(phoneNumber, body);
     _NotifierService.NotifyByEmail(phoneNumber, body);
 }
Пример #2
0
 public void SendSMS(string mobileNumber, string body)
 {
     SendSMSUsingGateway(mobileNumber, body);
     _NotifierService.NotifyByEmail(mobileNumber, body);
 }