Ejemplo n.º 1
0
        public DataTable llenar_Usuarios(string nombre, string apellido)
        {
            DataTable dt = new DataTable();


            try
            {
                GestorBase BD = new GestorBase();
                dt = BD.llenar_Usuarios(nombre, apellido);
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message, ex);
            }

            return(dt);
        }
Ejemplo n.º 2
0
        public DataTable llenar_Usuarios(int cedula)
        {
            DataTable dt = new DataTable();


            try
            {
                GestorBase BD = new GestorBase();
                dt = BD.llenar_Usuarios(cedula);
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message, ex);
            }

            return(dt);
        }