void OgrListesi() { List <EntityOgrenci> ogrliste = BLLOgrencı.Lıstele(); dataGridView1.DataSource = ogrliste; this.Text = "Ogrenci listesi başarılı"; }
private void BTNKAYDET_Click(object sender, EventArgs e) { EntityOgrenci ENT = new EntityOgrenci(); ENT.AD = TXTAD.Text; ENT.SOYAD = TXTSOYAD.Text; ENT.FOTOGRAF = TXTFOTO.Text; ENT.KULUPID = Convert.ToInt32(CMBKULUP.SelectedValue); BLLOgrencı.ekle(ENT); MessageBox.Show("Öğrenci Kaydı Yapıldı"); OgrListesi(); }
private void Btnguncelle_Click(object sender, EventArgs e) { EntityOgrenci ENT = new EntityOgrenci(); ENT.AD = TXTAD.Text; ENT.SOYAD = TXTSOYAD.Text; ENT.FOTOGRAF = TXTFOTO.Text; ENT.KULUPID = Convert.ToInt32(CMBKULUP.SelectedValue); ENT.ID = Convert.ToInt32(TXTID.Text); BLLOgrencı.Guncelle(ENT); MessageBox.Show("Başarılı"); OgrListesi(); }