public void Post(Models.Contact contact)
 {
     try
     {
         using (var repo = new Data.ContactsRepository())
         {
             repo.CreateContact(contact);
         }
     }
     catch (Exception ex)
     {
         Logger.DebugException("Post failed", ex);
         throw;
     }
 }