public static DataTable KullaniciCek(string kullaniciID) { string kod = "Select * From tblKullanicilar where KullaniciID=@kullaniciID"; string[] parametre = { "@kullaniciID" }; string[] veri = { kullaniciID }; return(VT.ExecuteReader(kod, parametre, veri)); }
public static DataTable Giris(string kullaniciAdi, string sifre) { string kod = "Select * From tblKullanicilar Where KullaniciAdi=@kullaniciAdi and Sifre=@sifre"; string[] parametre = { "@kullaniciAdi", "@sifre" }; string[] veri = { kullaniciAdi, sifre }; return(VT.ExecuteReader(kod, parametre, veri)); }
public static DataTable IletisimFormu() { string kod = "Select * From tblIletisim Where Aktif=true"; return(VT.ExecuteReader(kod)); }
public static DataTable Kullanicilar() { string kod = "Select * From tblKullanicilar"; return(VT.ExecuteReader(kod)); }
public static DataTable Ogrenciler() { string kod = "Select * From tblOgrenciler"; return(VT.ExecuteReader(kod)); }