Exemplo n.º 1
0
 public int Update(Ogrenci ogr)
 {
     return(0);
 }
Exemplo n.º 2
0
 public int Add(Ogrenci ogr)
 {
     ogrenciListesi.Add(ogr);
     return(ogr.Sira);
 }
Exemplo n.º 3
0
        public Ogrenci Sorgula(int id)
        {
            Ogrenci ogr = ogrenciListesi.FirstOrDefault(item => item.Sira == id);

            return(ogr);
        }