public int SistemKontrolu(string kullaniciAdi, string sifre)
        {
            if (!string.IsNullOrEmpty(kullaniciAdi) && !string.IsNullOrEmpty(sifre))
            {
                Entities.UsersTable us = new Entities.UsersTable()
                {
                    KullaniciAdi = kullaniciAdi,
                    Sifre        = sifre
                };



                return(dll.SistemKontrolu(us));
            }
            else
            {
                return(-1);
            }
        }
 public int SistemKontrolu(Entities.UsersTable U)
 {
     try
     {
         cmd = new SqlCommand("select count(*) from UsersTable where KullaniciAdi =@KullaniciAdi and Sifre=@Sifre", con);
         //count dediğim için tek bir hücre dönecek
         cmd.Parameters.Add("@KullaniciAdi", SqlDbType.NVarChar).Value = U.KullaniciAdi;
         cmd.Parameters.Add("@Sifre", SqlDbType.NVarChar).Value        = U.Sifre;
         BaglantiAyarla();
         ReturnValues = (int)cmd.ExecuteScalar();
     }
     catch (Exception ex)
     {
         string deneme = ex.Message;
     }
     finally
     {
         BaglantiAyarla();
     }
     return(ReturnValues);
 }