Exemple #1
0
        //public string AddAdopter()
        //{


        //}
        public void Decision()
        {
            ui = new UserInterface();
            Console.WriteLine("Hello there! Welcome to Nathan's Humane Center");
            Console.WriteLine("Would you like to Adopt a pet or Donate a pet?");
            string answer = Console.ReadLine();

            if (answer == "adopt")
            {
                ShowInventory();
                PickAPet();
            }
            else if (answer == "donate")
            {
                ui.DonateAPet();
            }
            else
            {
                Console.WriteLine("I'm sorry, that isn't an option\n\nTry Again.");
                Console.ReadLine();
            }
        }