public bool Modificar(Data.Curso reg) { _db.Entry(reg).State = System.Data.Entity.EntityState.Modified; return(_db.SaveChanges() > 0); }
public bool Insertar(Data.Curso reg) { _db.Curso.Add(reg); _db.SaveChanges(); return(true); }