Ejemplo n.º 1
0
 public static void DeliveryConfirmation(string providerReference, string recipient, DateTime deliveredOn, int notificationCode)
 {
     using (var db = new SmsLogDataContext())
     {
         db.SmsLog_DeliveryConfirmation(providerReference, recipient, deliveredOn, notificationCode);
         db.SubmitChanges();
     }
 }