public static Factura FindById(int id) { try { IFacturaRepository _repository = new FacturaRepository(); return _repository.FindById(id); } catch (Exception e) { throw e; } }