Esempio n. 1
0
        public void ogrencileriyenile()
        {
            OgrenciDal ogrencidal = new OgrenciDal();

            dataGridView1.DataSource = ogrencidal.Listele();
            byte[] gizlenecek = new byte[] { 1, 4, 8, 9, 10, 12, 13, 16, 17, 18 };
            foreach (var index in gizlenecek)
            {
                dataGridView1.Columns[index].Visible = false;
            }
        }
Esempio n. 2
0
 public static Ogrenci OgrenciNoileGetir(string ogrenciNo)
 {
     return(OgrenciDal.Getir2(ogrenciNo));
 }
Esempio n. 3
0
 public static Ogrenci KartNoileGetir(string kartNo)
 {
     return(OgrenciDal.Getir(kartNo));;
 }