Ejemplo n.º 1
0
        public IActionResult Search(string keyword, AccountType type, int pageindex = 1)
        {
            var list = _IAccountBusiness.Search(keyword, type, pageindex, 25);

            if (list == null)
            {
                TempData["MessageError"] = "Không có dữ liệu người ảnh hưởng";
            }
            return(View(list));
        }