Exemplo n.º 1
0
        //Add methods to:

        public List <Item> SortByPrice()
        {
            return(inventory.GetAllItems().OrderBy(e => e.Price).ToList());
        }