I need to get a list of ITEMS
, with just the Order id. The way I do is this, but it just brings me an Item, I want to be able to bring all the items I have, with the order ID.
var listaItems = new ItemRepositorio().BuscarTodos().FirstOrDefault(c => c.PedidoId == Id);