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
- {
-
- public OperatorModel CurrentUser
- {
- get {
- return OperatorProvider.Provider.GetCurrent();
- }
-
- }
- public override void OnActionExecuting(ActionExecutingContext context)
- {
-
-
-
-
-
-
- base.OnActionExecuting(context);
- }
- }
- }
|