public void Alterar(Telefone telefone)
 {
     contexto.Entry <Telefone>(telefone).State = EntityState.Modified;
     contexto.SaveChanges();
 }
Example #2
0
 public void Alterar(Contato contato)
 {
     contexto.Entry <Contato>(contato).State = EntityState.Modified;
     contexto.SaveChanges();
 }