using CZFW.Core; using CZFW.Framework.Logic; using CZFW.Framework.Model; using CZFW.Framework.Model.Common; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.Filters; namespace CZFW.Framework { public class ControllerBase : Controller { // private OperatorProvider currentUser; public OperatorModel CurrentUser { get { return OperatorProvider.Provider.GetCurrent(); } } public override void OnActionExecuting(ActionExecutingContext context) { //ViewBag.LeftMenuList = new NavigationLogic().GetNavigationTreeById(ConfigHelper.GetValue("CZFW.AdminMenu")); //var user = OperatorProvider.Provider.GetUser(); //if (user == null) //{ // context.Result = Redirect("/Manage/Home/Index"); //} base.OnActionExecuting(context); } } }