Exemplo n.º 1
0
 public void Alterar(EPI oEPI)
 {
     _Contexto.Entry(oEPI).State = System.Data.Entity.EntityState.Modified;
     _Contexto.SaveChanges();
 }
Exemplo n.º 2
0
 public void Alterar(Colaborador oColaborador)
 {
     _Contexto.Entry(oColaborador).State = System.Data.Entity.EntityState.Modified;
     _Contexto.SaveChanges();
 }