Exemplo n.º 1
0
        void OgrenciListesi()
        {
            List <EntityClassOgrenci> OgrenciListele = LogicClassOgrenci.LISTELE();

            dataGridView1.DataSource = OgrenciListele;
            this.Text = "Öğrenci Listesi";
        }
Exemplo n.º 2
0
        private void BTNKAYDET_Click(object sender, EventArgs e)
        {
            EntityClassOgrenci ent = new EntityClassOgrenci();

            ent.AD       = TXTAD.Text;
            ent.SOYAD    = TXTSOYAD.Text;
            ent.FOTOGRAF = TXTFOTO.Text;
            ent.KULUPID  = Convert.ToInt16(comboBox1.SelectedValue);
            LogicClassOgrenci.EKLE(ent);
            MessageBox.Show("YENİ ÖĞRENCİ EKLENDİ!");
            OgrenciListesi();
        }
Exemplo n.º 3
0
        private void BTNGUNCELLE_Click(object sender, EventArgs e)
        {
            EntityClassOgrenci ent = new EntityClassOgrenci();

            ent.ID       = Convert.ToInt16(TXTID.Text);
            ent.AD       = TXTAD.Text;
            ent.SOYAD    = TXTSOYAD.Text;
            ent.FOTOGRAF = TXTFOTO.Text;
            ent.KULUPID  = Convert.ToInt16(comboBox1.SelectedValue);
            LogicClassOgrenci.GUNCELLE(ent);
            MessageBox.Show("KAYIT GÜNCELLENDİ!");
            OgrenciListesi();
        }