public long Insert(Contact contact) { Context.Contacts.Add(contact); Context.SaveChanges(); return contact.Id; }
public void Update(int id, Contact contact) { throw new NotImplementedException(); }