Пример #1
0
        private static void StoreHistory()
        {
            Console.WriteLine("Which store history would you like to check?");
            PrintStoreList();
            List <Order> Read;

            Read = PizzaBoxContext.StoreHistory(_context, (Common.Answer(1, 3)));
            foreach (var item in Read)
            {
                Console.WriteLine(item.ToString());
            }
        }