Exemplo n.º 1
0
        public JsonResult AutoComplete(string term)
        {
            var tripService = new TripService();
            var stations    = tripService.GetStationsByName(term);

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