Beispiel #1
0
        public ActionResult City(Country commonattributes)
        {
            List <City> lstCity      = new List <City>();
            APIManager  apimanager   = new APIManager();
            string      StrCountryId = commonattributes.ID;
            string      Name         = commonattributes.LocalizedName;

            lstCity = apimanager.GetAllcities(StrCountryId, Name);
            return(View(lstCity));
        }