public ActionResult Save(Country objCountry) { if (ModelState.IsValid) { CountryBLL objMeasurementBLL = new CountryBLL(); objMeasurementBLL.SaveCountry(objCountry); } return(RedirectToAction("Index", "Country")); }