Exemple #1
0
            public void displayNode()
            {
                Console.Write("Durak Adı: " + data.getDurakAdi() + "\n"
                              + "Boş Park Yeri:  " + data.getBosPark() + "\n"
                              + "Tandem Bisiklet Sayısı: " + data.getTandem() + "\n"
                              + "Normal Bisiklet Sayısı:  " + data.getNormal() + "\n"
                              + "Kiralama İşlemi Yapan Müşteri Sayısı: " + data.getListSize() + "\n");

                Console.WriteLine();
                Console.WriteLine("Müşteri Bilgileri; ");
                Console.WriteLine();

                foreach (Müsteri m in data.getList())
                {
                    Console.Write("Müşteri ID: " + m.getMüşteriID() + "\n"
                                  + m.getZaman().toString());
                }

                Console.WriteLine();
            }