Example #1
0
        public void SortPetsByPrice()
        {
            Console.WriteLine("You chose option 6 - show pets by price:");
            Console.WriteLine("");
            var petsByPrice = _petShopService.SortPetsByPrice();

            PrintAllPets(petsByPrice);
        }