private void button1_Click(object sender, EventArgs e) { BireyselMusteri b = new BireyselMusteri(); TicariMusteri t = new TicariMusteri(); b.Adi = "emre"; b.Soyadi = "cırganıs"; b.MusteriNo = 12345; t.Adi = "aşi"; t.Soyadi = "asfas"; t.MusteriNo = 15454; b.HesapAc(b); //b.HesabaHavale(h, 200, h2); MessageBox.Show("" + b.hesaplar); MessageBox.Show(t.Soyadi); MessageBox.Show(b.Adi); }
private void btnMusteri_Click(object sender, EventArgs e) { if (txtIsim.Text.Length == 0) { MessageBox.Show("Geçerli isim giriniz !"); } else if (txtSoyisim.Text.Length == 0) { MessageBox.Show("Geçerli soyad giriniz !"); } else if (txtTC.Text.Length == 0) { MessageBox.Show("Geçerli kimlik numarası giriniz !"); } else { if (chkBireysel.Checked == true) { BireyselMusteri b = new BireyselMusteri(); b.Adi = txtIsim.Text; b.Soyadi = txtSoyisim.Text; b.TC = txtTC.Text; b.MusteriNo += BankApp.Musteriler.Count; b.MusteriTuru = false; //bireysel musteri txtMusteriNo.Text = b.MusteriNo.ToString(); MessageBox.Show("Müşteri Numaranız :" + b.MusteriNo + " Lütfen Kaydedin"); BankApp.MusteriEkle(b); } else if (chkTicari.Checked == true) { if (txtVergiNo.Text.Length == 0) { MessageBox.Show("Geçersiz Vergi Numarasi"); } else { TicariMusteri t = new TicariMusteri(); t.Adi = txtIsim.Text; t.Soyadi = txtSoyisim.Text; t.VergiNumarasi = Convert.ToInt32(txtVergiNo.Text); t.MusteriTuru = true; //ticari musteri t.TC = txtTC.Text; t.MusteriNo += BankApp.Musteriler.Count; txtMusteriNo.Text = t.MusteriNo.ToString(); MessageBox.Show("Müşteri Numaranız :" + t.MusteriNo + " Lütfen Kaydedin"); BankApp.MusteriEkle(t); } } else { MessageBox.Show("Müsteri Türünü Seçiniz."); } } }