Ejemplo n.º 1
0
        public ActionResult GetListAutoComplete(string key, string keword, int showLimit, int agencyId, int type = 0)
        {
            var obj = Request["key"] != Keyapi ? new List <SuggestionsProduct>() : _da.GetListAutoComplete(keword, showLimit, agencyId, type);

            return(Json(obj, JsonRequestBehavior.AllowGet));
        }