Exemple #1
0
        public ActionResult AutoComplete(int start, int limit, int page, string query, string wuYeBianHao = "")
        {
            var data = _service.QueryLouDongMingCheng(query, wuYeBianHao, GetActiveOrgFilter().NamePath).ToPagedList(page, limit);

            if (data.Count == 0)
            {
                return(this.Store(GetEmptyResult(), 0));
            }
            return(this.Store(data, data.Count));
        }