static void Main(string[] args) { Customer musteri = new Customer(); musteri.KullaniciAdi = "Engin Bulut"; musteri.TelefonNo = "1234567890"; musteri.YeniGozlemciEkle(new MakeCampaignObserver()); musteri.YeniGozlemciEkle(new SendFreeCreditObserver()); //Thread.Sleep(5); //musteri.KontorYukle(); Console.ReadLine(); }
public void notify(Customer customer) { Console.WriteLine(customer.TelefonNo + " numarasına sahip " + customer.KullaniciAdi + " adlı kullanıcıya bedava kontör gönderildi."); }
public void notify(Customer customer) { Console.WriteLine(customer.TelefonNo+" numarasına sahip "+customer.KullaniciAdi+" adlı kullanıcıya kampanya mesajı gönderildi."); }