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