Esempio n. 1
0
        public ActionResult Index(int?noDelete)
        {
            _iCommonService.GetPageWiseRoleRigths("Tables");
            List <TablesModel> tableList = new List <TablesModel>();

            tableList = _iTablesService.GetTablesList().ToList();
            if (noDelete != null)
            {
                ViewBag.Result = _locService.GetLocalizedHtmlString("Can not delete reference available.");
            }
            return(View(tableList));
        }