public static void Eliminar(int Id)
        {
            var         db = new DetallesDb();
            Estudiantes e  = db.Estudiante.Find(Id);

            db.Estudiante.Remove(e);
            db.SaveChanges();
        }
        public static void Guardad(int v)
        {
            DetallesDb db    = new DetallesDb();
            Grupos     grupo = db.Grupo.Find(v);

            try
            {
                db.Grupo.Add(grupo);
                db.SaveChanges();
            }catch (Exception ex)
            {
                throw ex;
            }
        }
 public static void Guardar(Estudiantes e)
 {
     try
     {
         DetallesDb db = new DetallesDb();
         {
             db.Estudiante.Add(e);
             db.SaveChanges();
             db.Dispose();
         }
     }catch (Exception ex)
     {
         throw ex;
     }
 }
Exemple #4
0
        public static bool Insertar(Estudiantes nuevo)
        {
            bool retorno = false;

            try
            {
                var db = new DetallesDb();
                db.Estudiante.Add(nuevo);
                db.SaveChanges();
                retorno = true;
            }
            catch (Exception)
            {
                throw;
            }
            return(retorno);
        }
        public static void Guardar(Grupos G)
        {
            try
            {
                DetallesDb db = new DetallesDb();

                db.Grupo.Add(G);
                foreach (var est in G.Estudiante)
                {
                    db.Entry(est).State = System.Data.Entity.EntityState.Unchanged;
                }
                db.SaveChanges();
                db.Dispose();
            }catch (Exception)
            {
                throw;
            }
        }
Exemple #6
0
        public static bool Insertar(Grupos nuevo)
        {
            bool retorno = false;

            try
            {
                var db = new DetallesDb();

                db.Grupo.Add(nuevo);
                foreach (var estudiante in nuevo.Estudiante)
                {
                    db.Entry(nuevo).State = System.Data.Entity.EntityState.Unchanged;
                }
                db.SaveChanges();

                retorno = true;
            }
            catch (Exception)
            {
                throw;
            }
            return(retorno);
        }
Exemple #7
0
        public static bool Insertar(List <GruposEstudiantes> nuevo)
        {
            bool retorno = false;

            using (var Conexion = new DetallesDb())
            {
                try
                {
                    foreach (var Estudiante in nuevo)
                    {
                        Conexion.GruposEstudiantes.Add(Estudiante);
                    }
                    Conexion.SaveChanges();
                    retorno = true;
                }
                catch (Exception e)
                {
                    MessageBox.Show(e.ToString());
                    //throw;
                }
                return(retorno);
            }
        }