public void ejecutarSQL()
 {
     try
     {
         string where = armarFiltrosWhere();
         Paginador.cargarGrilla("select nroFactura, usuario, total, modoPago, fecha, concepto from TPGDD.VW_FACTURAS_OK " + where);
         Paginador.cargarPaginas();
     }
     catch (SqlException ex)
     {
         ExceptionManager.manejadorExcepcionesSQL(ex);
     }
     catch (Exception ex)
     {
         ExceptionManager.manejarExcepcion(ex);
     }
 }