Ejemplo n.º 1
0
        public ActionResult Index()
        {
            //  base.GetAllRegionByServiceArea(1);

            LocationPageView locationPageView = new LocationPageView
            {
                ServiceAreas = base.GetAllServiceArea(),
                LastRegion   = base.GetLastRegion(),
            };

            return(View("Index", locationPageView));
        }
Ejemplo n.º 2
0
        public RedirectToRouteResult Index(LocationPageView view)
        {
            string regionId = Request.Form["hdnRegionId"];

            return(RedirectToAction("Index", "Store", new { area = "Customer", id = regionId }));
        }