示例#1
0
        public ActionResult GetRegions(string countryCode, string region, string inputName)
        {
            var countryRegion = new CountryRegionViewModel
            {
                RegionOptions = _addressBookService.GetRegionsByCountryCode(countryCode),
                Region        = region
            };

            ViewData["Name"] = inputName;
            return(PartialView("~/Features/Shared/Foundation/DisplayTemplates/CountryRegionViewModel.cshtml", countryRegion));
        }
示例#2
0
        public ActionResult GetRegionsForCountry(string countryCode, string region, string htmlPrefix)
        {
            ViewData.TemplateInfo.HtmlFieldPrefix = htmlPrefix;
            var countryRegion = new CountryRegionViewModel
            {
                RegionOptions = _addressBookService.GetRegionsByCountryCode(countryCode),
                Region        = region
            };

            return(PartialView("_AddressRegion", countryRegion));
        }
示例#3
0
 public AddressModel()
 {
     CountryRegion = new CountryRegionViewModel();
 }