Example #1
0
        public List <ItemFactura> ObtenerItemFactura(int idFactura)
        {
            List <ItemFactura> items = new List <ItemFactura>();

            try
            {
                items = _FacturaRepository.ObtenerItemFactura(idFactura).ToList();
            }
            catch (Exception ex)
            {
                Log.Error(ex.ToString());
            }
            return(items);
        }