Exemplo n.º 1
0
        public List<Entidad> ObtenerListaFacturaFechas(string fechaInicio, string fechaFin)
        {
            try
            {

                DAOPresupuestoFactura servidorSQL = new DAOPresupuestoFactura();
                return servidorSQL.ConsultarFacturasRangoFechas(fechaInicio, fechaFin);
            }
            catch (ExceptionPresupuestoFactura e)
            {
                throw new ExceptionPresupuestoFactura(e.Message);
            }
            catch (Exception e)
            {
                throw new ExceptionPresupuestoFactura(e.Message);
            }
        }