예제 #1
0
 public void Sil(Musteri musteri)
 {
     Console.WriteLine(musteri.Id + " " + "Id numaralı" + " " + musteri.Adi + " " + musteri.Soyadi + " " + "Listeden Silindi");
 }
예제 #2
0
 public void Liste(Musteri musteri)
 {
     Console.WriteLine(musteri.Id + " " + "Id numaralı" + " " + musteri.Adi + " " + musteri.Soyadi);
 }
예제 #3
0
 public void Ekle(Musteri musteri)
 {
     Console.WriteLine(musteri.Id + " " + "Id numaralı" + " " + musteri.Adi + " " + musteri.Soyadi + " " + "Listeye Eklendi");
 }