public LogAndCheckCacheOfServiceAttribute(IErrorLogManager errorLogManager, IDataBaseContextManager dataBaseContextManager
                                           , IActionLogManager actionLogManager)
 {
     _errorLogManager        = errorLogManager;
     _dataBaseContextManager = dataBaseContextManager;
     _actionLogManager       = actionLogManager;
 }
 public ActionLogSpecialServicesMiddleware(OwinMiddleware next, IDataBaseContextManager dataBaseContextManager, IActionLogManager actionLogManager
                                           , IErrorLogManager errorLogManager) : base(next)
 {
     _actionLogManager       = actionLogManager;
     _errorLogManager        = errorLogManager;
     _dataBaseContextManager = dataBaseContextManager;
 }
 public LogOfODataServiceAttribute(IErrorLogManager errorLogManager
                                   , IDataBaseContextManager dataBaseContextManager, IActionLogManager actionLogManager)
 {
     _errorLogManager        = errorLogManager;
     _dataBaseContextManager = dataBaseContextManager;
     _actionLogManager       = actionLogManager;
 }
Example #4
0
 public AuthorizePagesPathAsynchOperation(AsyncCallback callback, HttpContext context,
     IErrorLogManager errorLogManager,
     IDataBaseContextManager dataBaseContextManager, Object state = null)
 {
     _callback = callback;
     _context = context;
     _state = state;
     _completed = false;
     _errorLogManager = errorLogManager;
     _dataBaseContextManager = dataBaseContextManager;
 }
Example #5
0
 public DefaultAuthorizeAdapter(IDataBaseContextManager dataBaseContextManager) : base(dataBaseContextManager)
 {
 }
 public LogMainEntryServiceAttribute(Log.Base.IActionLogManager actionLog, IDataBaseContextManager dataBaseContextManager)
 {
     _actionLog = actionLog;
     _dataBaseContextManager = dataBaseContextManager;
 }
 public DefaultLanguageAdapter(IDataBaseContextManager dataBaseContextManager)
     : base(dataBaseContextManager)
 {
 }
 protected BaseLanguageAdapter(IDataBaseContextManager dataBaseContextManager)
 {
     DataBaseContextManager = dataBaseContextManager;
 }
Example #9
0
 protected BaseAuthorizeAdapter(IDataBaseContextManager dataBaseContextManager)
 {
     DataBaseContextManager = dataBaseContextManager;
 }