public static bool Insertar(Estudiantes est) { bool retorno = false; try { var db = new ClaseDb(); db.Estudiante.Add(est); db.SaveChanges(); retorno = true; } catch (Exception) { throw; } return(retorno); }
public static bool Insertar(Grupos grp) { bool retorno = false; try { ClaseDb db = new ClaseDb(); db.Grupo.Add(grp); db.SaveChanges(); retorno = true; } catch (Exception) { throw; } return(retorno); }