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