ControllerBase.cs 959 B

123456789101112131415161718192021222324252627282930313233
  1. using CZFW.Core;
  2. using CZFW.Framework.Logic;
  3. using CZFW.Framework.Model;
  4. using CZFW.Framework.Model.Common;
  5. using Microsoft.AspNetCore.Mvc;
  6. using Microsoft.AspNetCore.Mvc.Filters;
  7. namespace CZFW.Framework
  8. {
  9. public class ControllerBase : Controller
  10. {
  11. // private OperatorProvider currentUser;
  12. public OperatorModel CurrentUser
  13. {
  14. get {
  15. return OperatorProvider.Provider.GetCurrent();
  16. }
  17. }
  18. public override void OnActionExecuting(ActionExecutingContext context)
  19. {
  20. //ViewBag.LeftMenuList = new NavigationLogic().GetNavigationTreeById(ConfigHelper.GetValue<int>("CZFW.AdminMenu"));
  21. //var user = OperatorProvider.Provider.GetUser();
  22. //if (user == null)
  23. //{
  24. // context.Result = Redirect("/Manage/Home/Index");
  25. //}
  26. base.OnActionExecuting(context);
  27. }
  28. }
  29. }