public void RN_Eliminar_Justificacion(string idjusti)
        {
            BD_Justificacion obj = new BD_Justificacion();

            obj.BD_Eliminar_Justificacion(idjusti);
        }
        public DataTable RN_BuscarJustificacion_porValor(string xdato)
        {
            BD_Justificacion obj = new BD_Justificacion();

            return(obj.BD_BuscarJustificacion_porValor(xdato));
        }
        public DataTable RN_Cargar_todos_Justificacion()
        {
            BD_Justificacion obj = new BD_Justificacion();

            return(obj.BD_Cargar_todos_Justificacion());
        }
        public void RN_Desaprobar_Justificacion(string idjusti, string idperso)
        {
            BD_Justificacion obj = new BD_Justificacion();

            obj.BD_Desaprobar_Justificacion(idjusti, idperso);
        }
        public void RN_Editar_Justificacion(EN_Justificacion jus)
        {
            BD_Justificacion obj = new BD_Justificacion();

            obj.BD_Editar_Justificacion(jus);
        }
        public void RN_Registrar_Justificacion(EN_Justificacion jus)
        {
            BD_Justificacion obj = new BD_Justificacion();

            obj.BD_Registrar_Justificacion(jus);
        }