Esempio n. 1
0
 internal ResultadoInfo <CuentaGastosInfo> ObtenerPorPagina(PaginacionInfo pagina, CuentaGastosInfo filtros)
 {
     try
     {
         Logger.Info();
         var cuentaGastosDAL = new CuentaGastosDAL();
         ResultadoInfo <CuentaGastosInfo> result = cuentaGastosDAL.ObtenerPorPagina(pagina, filtros);
         return(result);
     }
     catch (ExcepcionGenerica)
     {
         throw;
     }
     catch (Exception ex)
     {
         Logger.Error(ex);
         throw new ExcepcionDesconocida(MethodBase.GetCurrentMethod(), ex);
     }
 }