Exemplo n.º 1
0
        public ActionResult Save(Country objCountry)
        {
            if (ModelState.IsValid)
            {
                CountryBLL objMeasurementBLL = new CountryBLL();

                objMeasurementBLL.SaveCountry(objCountry);
            }
            return(RedirectToAction("Index", "Country"));
        }