Esempio n. 1
0
        public bool Autentificar()
        {
            bool retorno = false;

            dt = db.BuscarDb(string.Format("Select *from Usuarios where Nombre = '" + Nombre + "' and Clave = '" + Clave + "'"));

            if (dt.Rows.Count > 0)
            {
                retorno = true;
            }
            return(retorno);
        }
        public int GetIdSeccion(DateTime fecha, int idprofesor, int idsemestre, int idasignatura, int idseccion)
        {
            DataTable dt = new DataTable();

            dt = conexion.BuscarDb("Select IdInscripcion from Inscripciones where Fecha = '" + fecha.ToString("yyyy/MM/dd") + "' and IdProfesor = '" + idprofesor + "' and IdSemestre = '" + idsemestre
                                   + "' and IdAsignatura = '" + idasignatura + "' and IdSeccion = '" + IdSeccion + "'  ");
            if (dt.Rows.Count > 0)
            {
                this.IdInscripcion = (int)dt.Rows[0]["IdInscripcion"];
            }
            return(this.IdInscripcion);
        }
Esempio n. 3
0
        public int GetIdAsistencia(int idSeccion, int idAsignatura, int idSemestre, DateTime fecha)
        {
            DataTable dt = new DataTable();

            dt = conexion.BuscarDb("Select IdAsistencia From Asistencias Where IdSeccion = '" +
                                   idSeccion + "' and IdAsignatura = '" + idAsignatura + "' And IdSemestre = '" + idSemestre
                                   + "' And Fecha = '" + fecha.ToString("yyyy/MM/dd") + "'");
            if (dt.Rows.Count > 0)
            {
                this.IdAsistencia = (int)dt.Rows[0]["IdAsistencia"];
            }
            return(this.IdAsistencia);
        }
        public bool Buscar(int Id)
        {
            DataTable dt      = new DataTable();
            bool      Retorno = true;

            dt = conexion.BuscarDb("Select * from TareasDetalle where id=" + Id);
            if (dt.Rows.Count > 0)
            {
                this.IdTarea      = (int)dt.Rows[0]["idTarea"];
                this.IdEstudiante = (int)dt.Rows[0]["idEstudiante"];
                this.Calificacion = (int)dt.Rows[0]["Calificacion"];
            }
            return(Retorno);
        }
Esempio n. 5
0
        public DataTable ListadoUsuerEmpleado(string Campos = "*", string Condicion = "1=1", string Orden = "ASC")
        {
            ConexionDb conexion = new ConexionDb();

            //return conexion.BuscarDb("Select from Usuarios join Empleados on () where " + Condicion + " order by " + Orden);
            return(conexion.BuscarDb("select u.Email,u.Nivel,u.IdEmpleado,u.IdUsuario,u.Usuario, e.Nombre,e.Apellido,e.Direccion,e.Cedula,e.Celular,e.Telefono from Usuarios u join Empleados e on (u.IdEmpleado = e.IdEmpleado) where " + Condicion + " order by u.IdUsuario Desc"));
        }
        public override DataTable Listado(string Campos = "*", string Condicion = "1=1", string Orden = "desc")
        {
            ConexionDb conexion = new ConexionDb();
            string     sql      = string.Format("SELECT {0} FROM Ventas WHERE {1} ORDER BY VentasID {2}", Campos, Condicion, Orden);

            return(conexion.BuscarDb(sql));
        }
Esempio n. 7
0
        public override bool Buscar(int IdBuscado)
        {
            ConexionDb conexion = new ConexionDb();

            string sql = string.Format("SELECT * FROM Estudiantes WHERE IdEstudiantes = {0}", IdBuscado);

            DataTable dt = conexion.BuscarDb(sql);

            if (dt.Rows.Count > 0)
            {
                IdEstudiantes      = Convert.ToInt32(dt.Rows[0]["IdEstudiantes"]);
                IdCursos           = Convert.ToInt32(dt.Rows[0]["IdCursos"]);
                Fecha              = dt.Rows[0]["Fecha"].ToString();
                Matricula          = dt.Rows[0]["Matricula"].ToString();
                Nombre             = dt.Rows[0]["Nombre"].ToString();
                Apellido           = dt.Rows[0]["Apellido"].ToString();
                FechaNacimiento    = dt.Rows[0]["FechaNacimento"].ToString();
                Religion           = dt.Rows[0]["Religion"].ToString();
                LugarNacimiento    = dt.Rows[0]["LugarNacimiento"].ToString();
                DeporteOpasatiempo = dt.Rows[0]["DeporteOpasatiempo"].ToString();
                Foto = dt.Rows[0]["Foto"].ToString();
            }

            return(dt.Rows.Count > 0);
        }
Esempio n. 8
0
        public DataTable Listar(string Campos, string Filtro)
        {
            ConexionDb conexion = new ConexionDb();
            DataTable  datos    = new DataTable();

            datos = conexion.BuscarDb("Select " + Campos + " from Usuarios Where " + Filtro);
            return(datos);
        }
Esempio n. 9
0
        public DataTable Listar(string Campos, string Filtro)
        {
            ConexionDb conexion = new ConexionDb();
            DataTable  dt       = new DataTable();

            dt = conexion.BuscarDb("Select " + Campos + " From Clientes Where" + Filtro);
            return(dt);
        }
Esempio n. 10
0
        /// <summary>
        /// Buscar AsistenciasDetalle.....
        /// </summary>
        public bool Buscar(int prmIdAsistencias)
        {
            DataTable Datos   = new DataTable();
            bool      Retorno = false;

            Datos = Conexion.BuscarDb("Select * from AsistenciasDetalle Where Id=" + prmIdAsistencias);

            if (Datos.Rows.Count > 0)
            {
                Retorno = true;

                this.Id           = (int)Datos.Rows[0]["Id"];
                this.IdAsistencia = (int)Datos.Rows[0]["IdAsistencia"];
                this.IdEstudiante = (int)Datos.Rows[0]["IdEstudiante"];
                this.Calificacion = (byte)Datos.Rows[0]["Calificacion"];
            }
            return(Retorno);
        }
Esempio n. 11
0
        public bool Buscar(int prmIdCalificaciones)
        {
            DataTable Datos   = new DataTable();
            bool      Retorno = false;

            Datos = Conexion.BuscarDb("Select * from Calificaciones Where IdCalificacion=" + prmIdCalificaciones);

            if (Datos.Rows.Count > 0)
            {
                Retorno = true;

                this.IdCalificaciones = (int)Datos.Rows[0]["IdCalificacion"];
                this.IdAsignatura     = (int)Datos.Rows[0]["IdAsignatura"];
                this.Fecha            = (DateTime)Datos.Rows[0]["Fecha"];
                this.IdEstudiante     = (int)Datos.Rows[0]["IdEstudiante"];
                this.Calificacion     = (int)Datos.Rows[0]["Calificacion"];
            }


            return(Retorno);
        }
Esempio n. 12
0
        public static int ultimoId()
        {
            int        id       = 0;
            ConexionDb conectar = new ConexionDb();
            DataTable  dt       = new DataTable();

            dt = conectar.BuscarDb("Select MAX(IdPedido) as id from Pedidos");

            if (dt.Rows.Count > 0)
            {
                id = (int)dt.Rows[0]["id"];
            }
            return(id);
        }
Esempio n. 13
0
        public static int BuscarIdClientebyUsuario(int idUsuario)
        {
            int        Retorno  = 0;
            DataTable  Datos    = new DataTable();
            ConexionDb conexion = new ConexionDb();

            Datos = conexion.BuscarDb("Select Clientes.idCliente from Usuarios  Inner join Clientes on Usuarios.idCliente = Clientes.idCliente where Usuarios.IdUsuario = " + idUsuario);
            if (Datos.Rows.Count > 0)
            {
                Retorno = (int)Datos.Rows[0]["idCliente"];
            }

            return(Retorno);
        }
        public bool Buscar(string Id)
        {
            bool      mensaje = false;
            DataTable dt      = new DataTable();

            dt = conexion.BuscarDb("Select * From IncripcionesDetalle where Id = " + Id);
            if (dt.Rows.Count > 0)
            {
                mensaje = true;

                this.IdDetalle     = (int)dt.Rows[0]["Id"];
                this.IdInscripcion = (int)dt.Rows[0]["IdInscripcion"];
                this.IdEstudiante  = (int)dt.Rows[0]["IdEstudiante"];
            }
            return(mensaje);
        }
Esempio n. 15
0
        public bool Buscar()
        {
            ConexionDb conectar = new ConexionDb();
            DataTable  dt       = new DataTable();
            bool       msj      = false;

            dt = conectar.BuscarDb("select * from Entregas where IdEntrega = " + this.IdEntrega);
            if (dt.Rows.Count > 0)
            {
                msj             = true;
                this.IdEntrega  = (int)dt.Rows[0]["IdEntrega"];
                this.Fecha      = (DateTime)dt.Rows[0]["Fecha"];
                this.IdDelivery = (int)dt.Rows[0]["IdDelivery"];
            }
            return(msj);
        }
Esempio n. 16
0
        public bool Buscar(int IdAsignatura)
        {
            ConexionDb conexiondb = new ConexionDb();
            bool       mensaje    = false;
            DataTable  dt         = new DataTable();

            dt = conexiondb.BuscarDb("Select *From Asignaturas where IdAsignatura =" + IdAsignatura);
            if (dt.Rows.Count > 0)
            {
                mensaje       = true;
                this.Nombre   = (string)dt.Rows[0]["Nombre"];
                this.Creditos = (int)dt.Rows[0]["Creditos"];
                this.Codigo   = (int)dt.Rows[0]["Codigo"];
            }
            return(mensaje);
        }
        public override DataTable Listado(string Campos = "*", string Condicion = "1=1", string Orden = "ASC")
        {
            ConexionDb conexion = new ConexionDb();
            DataTable  dt       = conexion.BuscarDb("Select " + Campos + " from DatosAcademicos where " + Condicion + " order by IdDatosAcademicos " + Orden);

            if (dt.Rows.Count > 0)
            {
                IdDatosAcademicos = Convert.ToInt32(dt.Rows[0]["IdDatosAcademicos"]);
                IdEstudiantes     = Convert.ToInt32(dt.Rows[0]["IdEstudiantes"]);
                GradoAnterior     = dt.Rows[0]["GradoAnterior"].ToString();
                GradoActual       = dt.Rows[0]["GradoActual"].ToString();
                EscuelaAnterior   = dt.Rows[0]["EscuelaAnterior"].ToString();
            }

            return(dt);
        }
Esempio n. 18
0
        public bool BuscarId(string Nombre)
        {
            ConexionDb conexion = new ConexionDb();
            Boolean    paso     = false;
            DataTable  Datos    = new DataTable();

            Datos = conexion.BuscarDb("Select * from Usuarios where Nombre = '" + Nombre + "'");

            if (Datos.Rows.Count > 0)
            {
                this.IdUsuario = (int)Datos.Rows[0]["IdUsuario"];
                paso           = true;
            }

            return(paso);
        }
        public override DataTable Listado(string Campos = "*", string Condicion = "1=1", string Orden = "ASC")
        {
            ConexionDb conexion = new ConexionDb();
            DataTable  dt       = conexion.BuscarDb("Select " + Campos + " from DatosSalud where " + Condicion + " order by IdDatosSalud " + Orden);

            if (dt.Rows.Count > 0)
            {
                IdDatosSalud        = Convert.ToInt32(dt.Rows[0]["IdDatosSalud"]);
                IdEstudiantes       = Convert.ToInt32(dt.Rows[0]["IdEstudiantes"]);
                Enfermedades        = dt.Rows[0]["Enfermedades"].ToString();
                Alergias            = dt.Rows[0]["Alergias"].ToString();
                TratamientosMedicos = dt.Rows[0]["TratamientosMedicos"].ToString();
            }

            return(dt);
        }
Esempio n. 20
0
        public bool Buscar()
        {
            bool       Retorno  = false;
            DataTable  dt       = new DataTable();
            ConexionDb conexion = new ConexionDb();

            dt = conexion.BuscarDb("Select * From Rutas Where IdRuta = " + IdRuta);
            if (dt.Rows.Count > 0)
            {
                Retorno          = true;
                this.IdRuta      = (int)dt.Rows[0]["IdRuta"];
                this.Descripcion = (string)dt.Rows[0]["Descripcion"];
                this.Detalle     = (List <RutasDetalle>)dt.Rows[0]["Detalle"];
            }

            return(Retorno);
        }
Esempio n. 21
0
        public override bool Buscar(int IdBuscado)
        {
            ConexionDb conexion = new ConexionDb();

            string sql = string.Format("SELECT * FROM Materias WHERE IdMaterias = {0}", IdBuscado);

            DataTable dt = conexion.BuscarDb(sql);

            if (dt.Rows.Count > 0)
            {
                IdMaterias = Convert.ToInt32(dt.Rows[0]["IdMaterias"]);
                IdEmpleado = Convert.ToInt32(dt.Rows[0]["IdEmpleado"]);
                Materia    = dt.Rows[0]["Materia"].ToString();
            }

            return(dt.Rows.Count > 0);
        }
Esempio n. 22
0
        public bool Buscar()
        {
            bool       Retorno  = false;
            DataTable  dt       = new DataTable();
            ConexionDb conexion = new ConexionDb();

            dt = conexion.BuscarDb("Select * From Ofertas Where IdOferta = " + IdOferta);
            if (dt.Rows.Count > 0)
            {
                Retorno           = true;
                this.IdOferta     = (int)dt.Rows[0]["IdOferta"];
                this.IdProducto   = (int)dt.Rows[0]["IdProducto"];
                this.PrecioOferta = (float)dt.Rows[0]["PrecioOferta"];
            }

            return(Retorno);
        }
Esempio n. 23
0
        public bool Buscar()
        {
            ConexionDb conectar = new ConexionDb();
            DataTable  dt       = new DataTable();
            bool       msj      = false;

            dt = conectar.BuscarDb("select * from EntregasDetalle where IdEntregaDetalle = " + this.IdEntregaDetalle);
            if (dt.Rows.Count > 0)
            {
                msj = true;
                this.IdEntregaDetalle = (int)dt.Rows[0]["IdEntregaDetalle"];
                this.IdEntrega        = (int)dt.Rows[0]["IdEntrega"];
                this.IdPedido         = (int)dt.Rows[0]["IdPedido"];
                this.Estado           = (Boolean)dt.Rows[0]["Estado"];
            }
            return(msj);
        }
Esempio n. 24
0
        public bool Login()
        {
            ConexionDb conexion = new ConexionDb();

            UsuarioDt = conexion.BuscarDb(string.Format("SELECT * FROM Usuarios WHERE Usuario = '{0}' AND Clave = '{1}'", Usuario, Clave));

            if (UsuarioDt.Rows.Count > 0)
            {
                IdUsuario = Convert.ToInt32(UsuarioDt.Rows[0]["IdUsuario"]);
                Email     = UsuarioDt.Rows[0]["Email"].ToString();
                Usuario   = UsuarioDt.Rows[0]["Usuario"].ToString();
                Clave     = "";

                return(true);
            }

            return(false);
        }
Esempio n. 25
0
        public override DataTable Listado(string Campos = "*", string Condicion = "1=1", string Orden = "ASC")
        {
            ConexionDb conexion = new ConexionDb();
            DataTable  dt       = conexion.BuscarDb("Select " + Campos + " from ResponsableCuenta where " + Condicion + " order by IdResponsable " + Orden);

            if (dt.Rows.Count > 0)
            {
                IdResponsable = Convert.ToInt32(dt.Rows[0]["IdResponsable"]);
                IdEstudiantes = Convert.ToInt32(dt.Rows[0]["IdEstudiantes"]);
                Nombres       = dt.Rows[0]["Nombres"].ToString();
                Cedula        = dt.Rows[0]["Cedula"].ToString();
                Telefonos     = dt.Rows[0]["Telefonos"].ToString();
                Direccion     = dt.Rows[0]["Direccion"].ToString();
                Email         = dt.Rows[0]["Email"].ToString();
            }

            return(dt);
        }
Esempio n. 26
0
        public override bool Buscar(int IdBuscado)
        {
            ConexionDb conexion = new ConexionDb();

            string sql = string.Format("SELECT * FROM Cursos WHERE IdCursos = {0}", IdBuscado);

            DataTable dt = conexion.BuscarDb(sql);

            if (dt.Rows.Count > 0)
            {
                IdCursos = Convert.ToInt32(dt.Rows[0]["IdCursos"]);
                Grados   = dt.Rows[0]["Grados"].ToString();
                Nivel    = dt.Rows[0]["Nivel"].ToString();
                Cupo     = Convert.ToInt32(dt.Rows[0]["Cupo"]);
            }

            return(dt.Rows.Count > 0);
        }
Esempio n. 27
0
        public bool Buscar(int prmIdAsignatura)
        {
            DataTable Datos   = new DataTable();
            bool      Retorno = false;

            Datos = Conexion.BuscarDb("Select * from Asignaturas where IdAsignatura= " + prmIdAsignatura);

            if (Datos.Rows.Count > 0)
            {
                Retorno = true;

                this.Codigo   = (string)Datos.Rows[0]["Codigo"];
                this.Nombre   = (string)Datos.Rows[0]["Nombre"];
                this.Creditos = (int)Datos.Rows[0]["Creditos"];
                this.Activo   = (bool)Datos.Rows[0]["Activo"];
            }
            return(Retorno);
        }
Esempio n. 28
0
        public bool Buscar()
        {
            bool       Retorno  = false;
            DataTable  dt       = new DataTable();
            ConexionDb conexion = new ConexionDb();

            dt = conexion.BuscarDb("Select * From Productos Where IdProducto = " + IdProducto);
            if (dt.Rows.Count > 0)
            {
                Retorno          = true;
                this.IdProducto  = (int)dt.Rows[0]["IdProducto"];
                this.Descripcion = (string)dt.Rows[0]["Descripcion"];
                this.Precio      = (double)dt.Rows[0]["Precio"];
                this.Existencia  = (double)dt.Rows[0]["Existencia"];
            }

            return(Retorno);
        }
Esempio n. 29
0
        public override bool Buscar(int IdBuscado)
        {
            ConexionDb conexion = new ConexionDb();

            string sql = string.Format("SELECT * FROM Articulos WHERE ArticulosId = {0}", IdBuscado);

            DataTable dt = conexion.BuscarDb(sql);

            if (dt.Rows.Count > 0)
            {
                ArticulosId = Convert.ToInt32(dt.Rows[0]["ArticulosId"]);
                Descripcion = dt.Rows[0]["Descripcion"].ToString();
                Existencia  = Convert.ToInt32(dt.Rows[0]["Existencia"]);
                Precio      = Convert.ToDecimal(dt.Rows[0]["Precio"]);
            }

            return(dt.Rows.Count > 0);
        }
Esempio n. 30
0
        public bool Buscar()
        {
            ConexionDb conectar = new ConexionDb();
            DataTable  dt       = new DataTable();
            bool       msj      = false;

            dt = conectar.BuscarDb("select * from Pedidos where IdPedido = " + this.IdPedido);
            if (dt.Rows.Count > 0)
            {
                msj            = true;
                this.IdPedido  = (int)dt.Rows[0]["IdPedido"];
                this.IdCliente = (int)dt.Rows[0]["IdCliente"];
                this.Fecha     = (DateTime)dt.Rows[0]["Fecha"];
                this.Monto     = (float)dt.Rows[0]["Monto"];
                this.EsEntrega = (Boolean)dt.Rows[0]["EsEntregado"];
            }
            return(msj);
        }