コード例 #1
0
 public void Alterar(EPI oEPI)
 {
     _Contexto.Entry(oEPI).State = System.Data.Entity.EntityState.Modified;
     _Contexto.SaveChanges();
 }
コード例 #2
0
 public void Alterar(Colaborador oColaborador)
 {
     _Contexto.Entry(oColaborador).State = System.Data.Entity.EntityState.Modified;
     _Contexto.SaveChanges();
 }