public ActionResult CityLibrary()
        {
            var citiesList = LibraryCommonHelper.GetCitiesListByCountryId(0);

            ViewData["CountryList"] = ListCommonHelper.GetCountryList();
            return(View(citiesList));
        }
Exemplo n.º 2
0
        //
        // GET: /AgentReport/

        public ActionResult Index(int countryId = 0)
        {
            // List<AgentVm> agentList = AgentHelper.GetAgentListByCountry(countryId);
            ViewBag.CountryList = ListCommonHelper.GetCountryList();
            return(View());//agentList
        }