Example #1
0
        public List <Pet> GetCheapestPets()
        {
            var list = _petShopRepo.ReadByPrice().Reverse();

            return(list.Take(5).ToList());
        }