Get_All_Customer() public method

public Get_All_Customer ( Array customers ) : void
customers Array
return void
Example #1
0
        static void Main(string[] args)
        {
            Customer customer1 = new Customer();

            customer1.Id        = 1;
            customer1.TcNo      = "96385274131";
            customer1.FirstName = "Burak Emre";
            customer1.LastName  = "Aktaş";
            customer1.Age       = 18;

            Customer customer2 = new Customer();

            customer2.Id        = 2;
            customer2.TcNo      = "74185296362";
            customer2.FirstName = "Tuğra Metin";
            customer2.LastName  = "Dönmez";
            customer2.Age       = 18;

            Customer customer3 = new Customer();

            customer3.Id        = 3;
            customer3.TcNo      = "78945612378";
            customer3.FirstName = "Görkem";
            customer3.LastName  = "Öcal";
            customer3.Age       = 19;

            Customer customer4 = new Customer();

            customer4.Id        = 4;
            customer4.TcNo      = "12345678996";
            customer4.FirstName = "Mustafa Berk";
            customer4.LastName  = "Akgül";
            customer4.Age       = 18;

            Customer customer5 = new Customer();

            customer5.Id        = 5;
            customer5.TcNo      = "15975384269";
            customer5.FirstName = "Ahmet Berkay";
            customer5.LastName  = "Yılmaz";
            customer5.Age       = 19;

            Customer[] allCustomers = new Customer[]
            {
                customer1,
                customer2,
                customer3,
                customer4,
                customer5
            };

            CustomerManager customerManager = new CustomerManager();

            customerManager.Get_All_Customer(allCustomers);
            customerManager.Add_Customer(customer1);
        }
Example #2
0
        static void Main(string[] args)
        {
            Customer customer1 = new Customer();

            customer1.Id        = 1;
            customer1.Tc        = "1234858423";
            customer1.Name      = "Nur";
            customer1.Surname   = "Özgenç";
            customer1.AllAssets = 10045.323;

            Customer customer2 = new Customer();

            customer2.Id        = 2;
            customer2.Tc        = "4657687864";
            customer2.Name      = "Merve";
            customer2.Surname   = "Deniz";
            customer2.AllAssets = 2000;

            Customer customer3 = new Customer();

            customer3.Id        = 3;
            customer3.Tc        = "8457687864";
            customer3.Name      = "Aytaç";
            customer3.Surname   = "Kaleci";
            customer3.AllAssets = 212002.345;

            Customer customer4 = new Customer();

            customer4.Id        = 4;
            customer4.Tc        = "1257687324";
            customer4.Name      = "Dilara";
            customer4.Surname   = "Assoy";
            customer4.AllAssets = 532232.345;

            Customer[] allCustomers = new Customer[] { customer1, customer2, customer3 };

            CustomerManager customerManager = new CustomerManager();

            customerManager.Get_All_Customer(allCustomers);
            customerManager.Add_Customer(customer4);
            customerManager.Delete_Customer(customer2);
        }