protected void Btn_OgrenciEkle_Click(object sender, EventArgs e)
 {
     entityogrenci.OgrenciAd       = TxtOgrenciAd.Text;
     entityogrenci.OgrenciSoyad    = TxtOgrenciSoyad.Text;
     entityogrenci.OgrenciNumara   = TxtOgrenciNumara.Text;
     entityogrenci.OgrenciMail     = TxtOgrenciMail.Text;
     entityogrenci.OgrenciSifre    = TxtOgrenciSifre.Text;
     entityogrenci.OgrenciFotograf = TxtOgrenciFotograf.Text;
     entityogrenci.OgrenciBakiye   = double.Parse(TxtOgrenciBakiye.Text);
     BLLOgrenci.OgrenciEkle(entityogrenci);
 }
Beispiel #2
0
        private void btnOgrKaydet_Click(object sender, EventArgs e)
        {
            EntityOgrenci ent = new EntityOgrenci();

            ent.Ad       = txtOgrAd.Text;
            ent.Soyad    = txtOgrSoyad.Text;
            ent.Fotograf = txtOgrFotograf.Text;
            ent.Kulupid  = Convert.ToInt16(comboOgrKulup.SelectedValue);
            BLLOgrenci.OgrenciEkle(ent);
            MessageBox.Show("Öğrenci Kaydı Yapıldı");
            OgrenciListesi();
        }