Example #1
0
        // 1. Search for the steak you want to remove. Use SteakView.GetSteakId() to get the id of the steak to remove?
        // 2. Get that steak using SteakRepository.ListById(Id);
        // 3. SteakView.ConfirmRemoveSteak(steak);
        // 4. SteakRepository.Delete(Id);
        private static void RemoveSteak()
        {
            var   searchedId = SteakView.SearchSteak();
            Steak mySteak    = SteakRepository.ListById(searchedId);

            SteakView.ConfirmRemoveSteak(mySteak);
            SteakRepository.Delete(searchedId);


            //var id = SteakRepository.ListById(searchedId);

            /**if (SteakView.ConfirmRemoveSteak(mySteak) == true)
             * {
             *  SteakManager.Data.SteakRepository.Delete();
             *
             * }*/

            Console.WriteLine("Updated Steak List:");
            DisplaySteaks();
        }