private void btnMusteriGetir_Click(object sender, EventArgs e) { frmMusteriSorgulama frm = new frmMusteriSorgulama(); cGenel.MusteriTipi = "Bireysel Müşteri"; cGenel.FormMusteri = "Musteri Getir"; frm.ShowDialog(); cBireyselMusteri bry = new cBireyselMusteri(); cBireyselMusteri br = new cBireyselMusteri(); txtID.Text = cGenel.BireyselMusteriID.ToString(); bry.MusterileriGetirByMusteriID(cGenel.BireyselMusteriID, br); txtMusteriAd.Text = br.MusteriAd; txtMusteriSoyad.Text = br.MusteriSoyad; txtKimlikNo.Text = br.KimlikNo; txtUyruk.Text = br.Uyruk; txtDYeri.Text = br.DogumYeri; txtDTarihi.Text = br.DogumTarihi.ToShortDateString(); txtCinsiyet.Text = br.Cinsiyet; txtTelefon.Text = br.Telefon; txtAdres.Text = br.Adres; }
private void btnMusteriGetir_Click(object sender, EventArgs e) { frmMusteriSorgulama frm = new frmMusteriSorgulama(); cGenel.FormMusteri = "Musteri Getir"; if (cbMusteriTipi.Text == "Bireysel Müşteri") { cGenel.MusteriTipi = "Bireysel Müşteri"; frm.ShowDialog(); cBireyselMusteri bm = new cBireyselMusteri(); cBireyselMusteri bmg = new cBireyselMusteri(); txtMusteriID.Text = cGenel.BireyselMusteriID.ToString(); bmg.MusterileriGetirByMusteriID(cGenel.BireyselMusteriID, bm); txtMusteriID.Text = bm.MusteriID.ToString(); txtMusteriAd.Text = bm.MusteriAd; txtSoyad.Text = bm.MusteriSoyad; txtTCNo.Text = bm.KimlikNo; txtTelefon.Text = bm.Telefon; } else if (cbMusteriTipi.Text == "Kurumsal Müşteri") { cGenel.MusteriTipi = "Kurumsal Müşteri"; frm.ShowDialog(); cKurumsalMusteri kr = new cKurumsalMusteri(); cKurumsalMusteri krm = new cKurumsalMusteri(); txtMusteriID.Text = cGenel.KurumsalMusteriID.ToString(); krm.MusterileriGetirByFirmaID(cGenel.KurumsalMusteriID, kr); txtMusteriAd.Text = kr.Unvan; txtSoyad.Text = kr.Yetkili; txtTCNo.Text = kr.Telefon; } }