// GET api/contactlist
 public IEnumerable<Models.ContactList> Get()
 {
     try
     {
         using (var repo = new Data.ContactsRepository())
         {
             return repo.GetContactLists();
         }
     }
     catch (Exception ex)
     {
         Logger.DebugException("Get failed", ex);
         throw;
     }
 }