public List <Factura> ObtenerFacturas() { List <Factura> Facturas = new List <Factura>(); try { Facturas = _FacturaRepository.List().ToList(); } catch (Exception ex) { Log.Error(ex.ToString()); } return(Facturas); }