Esempio n. 1
0
        public DataTable llenar_sesiones(DateTime fecha_ini, DateTime fecha_fin)
        {
            DataTable dt = new DataTable();


            try
            {
                GestorBase BD = new GestorBase();
                dt = BD.llenar_Sesiones(fecha_ini, fecha_fin);
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message, ex);
            }

            return(dt);
        }
Esempio n. 2
0
        public DataTable llenar_sesiones(string usuario)
        {
            DataTable dt = new DataTable();


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

            return(dt);
        }