public static bool Insertar(Grupos Nuevo) { bool resultado = false; using (var conexion = new DetallesMapeoDB()) { try { conexion.grupo.Add(Nuevo); conexion.SaveChanges(); resultado = true; } catch (Exception ex) { MessageBox.Show(ex.ToString()); } } return(resultado); }
public static bool Insertar(Estudiantes Est) { bool retorno = false; using (var Conn = new DetallesMapeoDB()) { try { Conn.Estudiante.Add(Est); Conn.SaveChanges(); retorno = true; } catch (Exception) { throw; } return(retorno); } }
public static bool Insertar(List <GruposEstudiantes> Nuevo) { bool Retorno = false; using (var Conn = new DetallesMapeoDB()) { try { foreach (var Estudiante in Nuevo) { Conn.GruposEstudiante.Add(Estudiante); } Conn.SaveChanges(); Retorno = true; } catch (Exception) { throw; } } return(Retorno); }