Example #1
0
        public ActionResult GirisYap(Table_Kullanici kullanici)
        {
            var kullanic = Context.KullaniciGiris(kullanici.Adi, kullanici.Parola).FirstOrDefault(x => x.Adi == kullanici.Adi && x.Parola == kullanici.Parola);

            if (kullanic != null)
            {
                AktifKullanici.kullanici = Context.Table_Kullanici.FirstOrDefault(x => x.Adi == kullanici.Adi && x.Parola == kullanici.Parola);
                return(RedirectToAction("Index", "Home"));
            }

            else
            {
                return(View());
            }
        }
Example #2
0
 public ActionResult KayitOl(Table_Kullanici kullanici)
 {
     Context.KullaniciKayit(kullanici.Adi, kullanici.Soyadi, kullanici.Eposta, kullanici.Parola);
     return(RedirectToAction("Index", "Home"));
 }