Beispiel #1
0
        //
        //GET: /Admin/Module/ActiveInactive/Id

        public JsonResult ChangeStatusModule(int id)
        {
            bool result       = false;
            bool ChangeStatus = moduleBLL.ActiveInactive(id);

            if (ChangeStatus)
            {
                result = true;
            }
            return(Json(result));
        }