コード例 #1
0
 public void Marcartitulado(string cuenta)
 {
     using (contexto = new DataClassesTrayectoriaDataContext())
     {
         try
         {
             contexto.Titulado(cuenta);
         }
         catch (Exception ex)
         {
             throw ex;
         }
     }
 }
コード例 #2
0
 //metodo para insertar un folio de extraordinarios
 public int Insertar_extra(e_calificaciones cal)
 {
     try
     {
         using (this.contexto = new DataClassesTrayectoriaDataContext())
         {
             return(contexto.ins_calificacion_extra(cal.folio, cal.cuenta, cal.nombre, cal.calificacion));
         }
     }
     catch (Exception error)
     {
         throw error;
     }
 }
コード例 #3
0
 public void MarcarEficienciaT(string cuenta)
 {
     using (contexto = new DataClassesTrayectoriaDataContext())
     {
         try
         {
             contexto.EficienciaTitulacion(cuenta);
         }
         catch (Exception ex)
         {
             throw ex;
         }
     }
 }
コード例 #4
0
 public void MarcarServicio(string cuenta)
 {
     using (contexto = new DataClassesTrayectoriaDataContext())
     {
         try
         {
             contexto.ServicioSocial(cuenta);
         }
         catch (Exception ex)
         {
             throw ex;
         }
     }
 }
コード例 #5
0
 //metodo para dar de baja
 public void Desertor(string cuenta)
 {
     using (contexto = new DataClassesTrayectoriaDataContext())
     {
         try
         {
             contexto.Desertor(cuenta);
         }
         catch (Exception ex)
         {
             throw ex;
         }
     }
 }
コード例 #6
0
 public void MarcarPracticas(string cuenta)
 {
     using (contexto = new DataClassesTrayectoriaDataContext())
     {
         try
         {
             contexto.PracticasProfesionales(cuenta);
         }
         catch (Exception ex)
         {
             throw ex;
         }
     }
 }
コード例 #7
0
 //Metodo para actualizar (editar) un registro
 public void Actualizar(string cuenta, string cuentanew, string nombre, int grupo, string turno, int semestre, string cohorte, int carrera)
 {
     using (contexto = new DataClassesTrayectoriaDataContext())
     {
         try
         {
             contexto.EditAlumnoBasico(cuenta, cuentanew, nombre, grupo, turno, semestre, cohorte, carrera);
         }
         catch (Exception ex)
         {
             throw ex;
         }
     }
 }
コード例 #8
0
 //metodo para insertar un folio en la base de datos
 public int Insertar(e_folios_extraordinarios folio)
 {
     try
     {
         using (this.contexto = new DataClassesTrayectoriaDataContext())
         {
             return(contexto.ins_folios_ext(folio.folio, folio.cohorte, folio.periodo, folio.grupo, folio.fecha, folio.carrera, folio.materia, folio.maestro, folio.tipo));
         }
     }
     catch (Exception error)
     {
         throw error;
     }
 }
コード例 #9
0
 public int Insertar(e_preparatoria prep)
 {
     try
     {
         using (this.contexto = new DataClassesTrayectoriaDataContext())
         {
             return(contexto.insPreparatoria(prep.nombre, prep.regimen, prep.uas));
         }
     }
     catch (Exception error)
     {
         throw error;
     }
 }
コード例 #10
0
 public void FechaEgreso(string cuenta, string fecha)
 {
     using (contexto = new DataClassesTrayectoriaDataContext())
     {
         try
         {
             contexto.ins_egreso(cuenta, fecha);
         }
         catch (Exception ex)
         {
             throw ex;
         }
     }
 }
コード例 #11
0
 public List <RezagadosGrupoSexo> GetRezagadoGrupoSexo()
 {
     try
     {
         using (this.contexto = new DataClassesTrayectoriaDataContext())
         {
             var t = from m in this.contexto.RezagadosGrupoSexo
                     select m;
             return(t.ToList());
         }
     }
     catch (Exception ex)
     {
         throw new Exception("Error al Listar\n " + ex.Message);
     }
 }
コード例 #12
0
 public List <IngresoLugarProcedenciaGrupo3> GetIngresoProcedenciaGpo3()
 {
     try
     {
         using (this.contexto = new DataClassesTrayectoriaDataContext())
         {
             var t = from m in this.contexto.IngresoLugarProcedenciaGrupo3
                     select m;
             return(t.ToList());
         }
     }
     catch (Exception ex)
     {
         throw new Exception("Error al Listar\n " + ex.Message);
     }
 }
コード例 #13
0
 public List <DesercionGrupoCohorte> GetDesercionCohorte()
 {
     try
     {
         using (this.contexto = new DataClassesTrayectoriaDataContext())
         {
             var t = from m in this.contexto.DesercionGrupoCohorte
                     select m;
             return(t.ToList());
         }
     }
     catch (Exception ex)
     {
         throw new Exception("Error al Listar\n " + ex.Message);
     }
 }
コード例 #14
0
 public List <IngresoCarrera> GetIngresoCarreras()
 {
     try
     {
         using (this.contexto = new DataClassesTrayectoriaDataContext())
         {
             var t = from m in this.contexto.IngresoCarrera
                     select m;
             return(t.ToList());
         }
     }
     catch (Exception ex)
     {
         throw new Exception("Error al Listar\n " + ex.Message);
     }
 }
コード例 #15
0
 //listar el id de una preparatoria por su nombre
 public List <Preparatorias> GetPrepaID(string nombre)
 {
     try
     {
         using (this.contexto = new DataClassesTrayectoriaDataContext())
         {
             var t = from c in this.contexto.Preparatorias
                     where c.NombrePreparatoria.Equals(nombre)
                     select c;
             return(t.ToList());
         }
     }
     catch (Exception ex)
     {
         throw new Exception("Error al Listar\n " + ex.Message);
     }
 }
コード例 #16
0
 //listar todas las preparatorias que son de la UAS
 public List <Preparatorias> ListarNoUAS()
 {
     try
     {
         using (this.contexto = new DataClassesTrayectoriaDataContext())
         {
             var t = from c in this.contexto.Preparatorias
                     where c.UAS.Equals('N')
                     select c;
             return(t.ToList());
         }
     }
     catch (Exception ex)
     {
         throw new Exception("Error al Listar\n " + ex.Message);
     }
 }
コード例 #17
0
 //Listar todos los alumnos
 public List <ViewAlumnos> ListarAlumnos()
 {
     try
     {
         using (this.contexto = new DataClassesTrayectoriaDataContext())
         {
             var t = from c in this.contexto.ViewAlumnos
                     orderby c.Cohorte
                     select c;
             return(t.ToList());
         }
     }
     catch (Exception ex)
     {
         throw new Exception("Error al Listar\n " + ex.Message);
     }
 }
コード例 #18
0
 public void Insertar(e_alumno a)
 {
     using (contexto = new DataClassesTrayectoriaDataContext())
     {
         try
         {
             contexto.insAlumno(a.cuenta, a.nombre, a.id_grupo, a.id_carrera, a.sexo, a.promedio_prepa,
                                a.ceneval, a.fecha_ingreso, a.turno, a.id_prepa, a.fecha_nacimiento, a.telefono, a.celular, a.correo, a.rfc,
                                a.curp, a.seguro, a.tipo_seguro, a.lugar_origen, a.id_municipio, a.direccion, a.tutor, a.direccion_tutor,
                                a.telefono_tutor, a.id_semestre, 0, a.cohorte);
         }
         catch (Exception ex)
         {
             throw ex;
         }
     }
 }
コード例 #19
0
 //Listar todos los alumnos
 public List <Maestros> ListarMaestros()
 {
     try
     {
         using (this.contexto = new DataClassesTrayectoriaDataContext())
         {
             var t = from m in this.contexto.Maestros
                     orderby m.nombre_maestro
                     select m;
             return(t.ToList());
         }
     }
     catch (Exception ex)
     {
         throw new Exception("Error al Listar\n " + ex.Message);
     }
 }
コード例 #20
0
 //metodo para listar los alumnos de los folios extraordinarios
 public List <VFolios_ordinarios> ListarFolios(string cohorte)
 {
     try
     {
         using (this.contexto = new DataClassesTrayectoriaDataContext())
         {
             var t = from fr in this.contexto.VFolios_ordinarios
                     where fr.COHORTE.Equals(cohorte)
                     orderby fr.FOLIO
                     select fr;
             return(t.ToList());
         }
     }
     catch (Exception ex)
     {
         throw new Exception("Error al Listar\n " + ex.Message);
     }
 }
コード例 #21
0
 public List <Municipio> ListarMunicipios(int id)
 {
     try
     {
         using (this.contexto = new DataClassesTrayectoriaDataContext())
         {
             var t = from m in this.contexto.Municipio
                     where m.estado.Equals(id)
                     orderby m.nombre_municipio
                     select m;
             return(t.ToList());
         }
     }
     catch (Exception ex)
     {
         throw new Exception("Error al Listar\n " + ex.Message);
     }
 }
コード例 #22
0
 //Buscar alumno por cohorte y grupo
 public List <ViewAlumnos> BuscarAlumno_cohorte_grupo(string cohorte, int grupo)
 {
     try
     {
         using (this.contexto = new DataClassesTrayectoriaDataContext())
         {
             var t = from c in this.contexto.ViewAlumnos
                     orderby c.NOMBRE ascending
                     where c.Cohorte.Equals(cohorte) && c.GRUPO.Equals(grupo) //&& c.desertor.Equals(0) && c.baja.Equals(0)
                     select c;
             return(t.ToList());
         }
     }
     catch (Exception ex)
     {
         throw new Exception("Error al Listar\n " + ex.Message);
     }
 }
コード例 #23
0
 //Buscar alumno en especifico ya sea por numero de nombre
 public List <ViewAlumnos> BuscarAlumnoxNombre(string nombre)
 {
     try
     {
         using (this.contexto = new DataClassesTrayectoriaDataContext())
         {
             var t = from c in this.contexto.ViewAlumnos
                     orderby c.Cohorte descending
                     where c.NOMBRE.Contains(nombre)
                     select c;
             return(t.ToList());
         }
     }
     catch (Exception ex)
     {
         throw new Exception("Error al Listar\n " + ex.Message);
     }
 }
コード例 #24
0
 //Buscar alumno en especifico ya sea por numero de cuenta
 public List <ViewAlumnos> BuscarAlumno(string @cuenta)
 {
     try
     {
         using (this.contexto = new DataClassesTrayectoriaDataContext())
         {
             var t = from c in this.contexto.ViewAlumnos
                     orderby c.Cohorte descending
                     where c.CUENTA.Equals(cuenta)
                     select c;
             return(t.ToList());
         }
     }
     catch (Exception ex)
     {
         throw new Exception("Error al Listar\n " + ex.Message);
     }
 }
コード例 #25
0
 //Buscar alumno por cohorte y grupo
 public List <ViewAlumnos> BuscarAlumno_cohorte_carrera(string cohorte, int carrera, string grupo)
 {
     try
     {
         using (this.contexto = new DataClassesTrayectoriaDataContext())
         {
             var t = from c in this.contexto.ViewAlumnos
                     orderby c.NOMBRE ascending
                     where c.Cohorte.Equals(cohorte) && c.CARRERA.Equals(carrera) && c.GrupoCarrera.Equals(grupo)
                     select c;
             return(t.ToList());
         }
     }
     catch (Exception ex)
     {
         throw new Exception("Error al Listar\n " + ex.Message);
     }
 }
コード例 #26
0
 //metodo para listar los alumnos de los folios extraordinarios
 public List <ReprobadosFoliosOrdinarios> ListarFolios(int periodo, int grupo, int materia)
 {
     try
     {
         using (this.contexto = new DataClassesTrayectoriaDataContext())
         {
             var t = from fr in this.contexto.ReprobadosFoliosOrdinarios
                     where fr.periodo.Equals(periodo) && fr.materia.Equals(materia)
                     orderby fr.nombre
                     select fr;
             return(t.ToList());
         }
     }
     catch (Exception ex)
     {
         throw new Exception("Error al Listar\n " + ex.Message);
     }
 }
コード例 #27
0
 public List <Materias> ListarMAteriasxCarrera(int carrera)
 {
     try
     {
         using (this.contexto = new DataClassesTrayectoriaDataContext())
         {
             var t = from m in this.contexto.Materias
                     orderby m.idSemestre
                     where m.idCarrera.Equals(carrera)
                     select m;
             return(t.ToList());
         }
     }
     catch (Exception ex)
     {
         throw new Exception("Error al Listar\n " + ex.Message);
     }
 }
コード例 #28
0
        //Buscar alumno por cohorte y grupo
        public List <folios_ordinarios> Obtener_estado_alumno(string cuenta)
        {
            try
            {
                using (this.contexto = new DataClassesTrayectoriaDataContext())
                {
                    var t = from c in this.contexto.folios_ordinarios
                            join f in this.contexto.calificaciones3 on c.folio equals f.folio
                            where f.cuenta.Equals(cuenta) orderby c.folio descending
                            select c;


                    return(t.ToList());
                }
            }
            catch (Exception ex)
            {
                throw new Exception("Error al Listar\n " + ex.Message);
            }
        }