public AuthorizeManager(ICacheManager cacheManager, IAuthService authService,
                         IOperateLogService operateLogService)
 {
     CacheManager      = cacheManager;
     AuthService       = authService;
     OperateLogService = operateLogService;
 }
Exemplo n.º 2
0
        public AdminOperateLogAttribute()
        {
            var container = HttpContext.Current.Application["Container"] as CompositionContainer;

            PermissionService = container.GetExportedValueOrDefault <IPermissionService>();
            OperateLogService = container.GetExportedValueOrDefault <IOperateLogService>();
        }
Exemplo n.º 3
0
 public OperateLogDetailController(IOperateLogService operateLogService)
 {
     _operateLogService = operateLogService;
 }
Exemplo n.º 4
0
 public BaseController()
 {
     OperateLogService = RuicoServiceResolver.Resolve <IOperateLogService>();
 }
Exemplo n.º 5
0
 public OperateLogSettingController(IOperateLogService operateLogService)
 {
     _operateLogService = operateLogService;
 }
Exemplo n.º 6
0
 public LogFilter()
 {
     var container = ApplicationContainer.GetContainer();
     _logService = container.Resolve<IOperateLogService>();
 }