Ejemplo n.º 1
0
        public static void GetCustomers()///getting all the customers stored in list///
        {
            CustBusiness    cbl       = new CustBusiness();
            List <Customer> customers = cbl.GetCustomers();

            Console.WriteLine("===============   customer Details=============");
            Console.WriteLine("customerID" + "   " + "customerName" + "  " + "mail" + "phno" + "password" + " " + "country" + "state");
            Console.WriteLine("-----------------------------------------------------------------------");

            foreach (Customer item in customers)
            {
                Console.WriteLine(item.CustomerId + " " + item.CustomerName + " " + item.Email + " " + item.PassWord + " " + item.MblNo + " " + item.Country + " " + item.State + " " + item.City + " " + item.HNo + " " + item.PinNo);// Displaying the products
            }
        }