コード例 #1
0
        public JsonResult FiltreliKullanicilariGetir(KullaniciFiltrelemeModel filtreliKullaniciModel)
        {
            var jsKullaniciModel = new KullaniciJSModel()
            {
                KullaniciModelList =
                    kullaniciBusinessLayer.FiltreliKullanicilariGetir(filtreliKullaniciModel.AraTxt, filtreliKullaniciModel.SehirId, KullaniciBilgileriDondur.KullaniciId(), filtreliKullaniciModel.OnayliMi, filtreliKullaniciModel.MerkezdeMi, filtreliKullaniciModel.OnayliMi),
                BasariliMi = true
            };

            jsKullaniciModel.KullaniciSayisi = jsKullaniciModel.KullaniciModelList.Count;
            Thread.Sleep(2000);
            return(Json(jsKullaniciModel, JsonRequestBehavior.AllowGet));
        }