14 lines
317 B
C#
14 lines
317 B
C#
using System.Web.Mvc;
|
|
using LeafWeb.Core.DAL;
|
|
|
|
namespace LeafWeb.Web.Controllers
|
|
{
|
|
public class FluxnetSiteController : ControllerBase
|
|
{
|
|
public JsonResult Autocomplete(string term)
|
|
{
|
|
var cities = DataService.GetFluxnetSitesAutocomplete(term);
|
|
return Json(cities, JsonRequestBehavior.AllowGet);
|
|
}
|
|
}
|
|
} |