Example #1
0
        public void viewArt()
        {
            Console.Clear();
            ArtRepo ap = new ArtRepo(_context, new ArtMapper());

            if (OrderArtBy == "Price")
            {
                ap.ShowArtByPrice();
            }
            else
            {
                ap.ShowAll();
            }
        }