123456789101112131415161718192021222324252627282930313233 |
- 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<int>("CZFW.AdminMenu"));
- //var user = OperatorProvider.Provider.GetUser();
- //if (user == null)
- //{
- // context.Result = Redirect("/Manage/Home/Index");
- //}
- base.OnActionExecuting(context);
- }
- }
- }
|