示例#1
0
        public ActionResult Delete(int Id)
        {
            CountryModel objCountryModel = new CountryModel();

            objCountryModel.DeleteCountry(Id);
            return(RedirectToAction("Index"));
        }