public ActionResult Index(int?noDelete) { _iCommonService.GetPageWiseRoleRigths("Outlet"); List <OutletModel> outletModels = new List <OutletModel>(); outletModels = _iOutletService.GetOutletList().ToList(); if (noDelete != null) { ViewBag.Result = _locService.GetLocalizedHtmlString("Can not delete reference available."); } return(View(outletModels)); }