public void Alterar(EPI oEPI) { _Contexto.Entry(oEPI).State = System.Data.Entity.EntityState.Modified; _Contexto.SaveChanges(); }
public void Alterar(Colaborador oColaborador) { _Contexto.Entry(oColaborador).State = System.Data.Entity.EntityState.Modified; _Contexto.SaveChanges(); }