Beispiel #1
0
 public void Alterar(BuracoReg oBuraco)
 {
     _db.Entry(oBuraco).State = System.Data.Entity.EntityState.Modified;
     _db.SaveChanges();
 }
 public void Alterar(Evento oEvento)
 {
     _db.Entry(oEvento).State = System.Data.Entity.EntityState.Modified;
     _db.SaveChanges();
 }
Beispiel #3
0
 public void Alterar(appCadastroUsuario oUsuario)
 {
     _db.Entry(oUsuario).State = System.Data.Entity.EntityState.Modified;
     _db.SaveChanges();
 }