Example #1
0
        public ActionResult DeleteCountry(Country ObjCountry)
        {
            string Result = string.Empty;

            Result = _admindata.DeleteCountry(ObjCountry);

            if (Result == "1")
            {
                Result = "Country deleted successfully";
            }

            return(Json(Result, JsonRequestBehavior.AllowGet));
        }