Example #1
0
        static void Main(string[] args)
        {
            OrderPrompt orderPrompt = new OrderPrompt();

            while (orderPrompt.Prompt())
            {
            }
        }
Example #2
0
        static void Main(string[] args)
        {
            OrderPrompt orderPrompt = new OrderPrompt();

            while (orderPrompt.Prompt())
            {
            }

            CustomersCollection c = new CustomersCollection();

            c.GetCustomerByName("John", "Wall");

            Console.WriteLine(); Console.ReadLine();
        }