Ejemplo n.º 1
0
        public List <Factura> ObtenerFacturas()
        {
            List <Factura> Facturas = new List <Factura>();

            try
            {
                Facturas = _FacturaRepository.List().ToList();
            }
            catch (Exception ex)
            {
                Log.Error(ex.ToString());
            }
            return(Facturas);
        }