public Contact UpdateContact(Contact contact)
 {
     throw new NotImplementedException();
 }
        public Contact AddContact(Contact contact)
        {
            Contact result = new ContactManager().AddContact(contact);

            return result;
        }