public ActionResult NewIndustryCategory(IndustryCategory industry)
        {
            bool result = _IndustryCategory.SaveIndustryCategory(industry);

            if (result)
            {
                return(RedirectToAction("ViewIndustryCategory", "MasterSettings"));
            }

            return(RedirectToAction("NewIndustryCategory", "MasterSettings"));
        }