예제 #1
0
        public ActionResult SearchFromBetween(double latA, double lngA, double latB, double lngB, string open)
        {
            var model = new FilterEditModel(latA, lngA, latB, lngB, open);

            return(View("Search", model));
        }
예제 #2
0
        public ActionResult SearchFromLocation(double latitude, double longitude, string open)
        {
            var model = new FilterEditModel(latitude, longitude, open);

            return(View("Search", model));
        }
예제 #3
0
        public ActionResult Search(IList <string> zipcodes, string open)
        {
            var model = new FilterEditModel(zipcodes, open);

            return(View(model));
        }