public ActionResult Country(string Id) { List <Country> lstCountry = new List <Country>(); APIManager apiManager = new APIManager(); lstCountry = apiManager.GetAllCountrie(Id); return(View(lstCountry)); }