public JsonResult StockSuggestion(string symbol, int count) { var stocks = Stocks.GetStockSymbols(symbol, 3, count); return(Json(stocks, JsonRequestBehavior.AllowGet)); }