Esempio n. 1
0
 public void SendSMS(string phoneNumber, string body)
 {
     SaveSMSToFile(phoneNumber, body);
     _NotifierService.NotifyByEmail(phoneNumber, body);
 }
Esempio n. 2
0
 public void SendSMS(string mobileNumber, string body)
 {
     SendSMSUsingGateway(mobileNumber, body);
     _NotifierService.NotifyByEmail(mobileNumber, body);
 }