public void Delete(string id)
 {
     try
     {
         using (var repo = new Data.ContactsRepository())
         {
             repo.DeleteContactList(id);
         }
     }
     catch (Exception ex)
     {
         Logger.DebugException("Delete failed", ex);
         throw;
     }
 }