Example #1
0
        public LogRepository(
            ILoggingDbContext loggingContext

            )
        {
            //this.contextFactory = contextFactory;
            _dbContext = loggingContext;
        }
Example #2
0
 public LogWriterService(ILoggingDbContext dbContext)
 {
     m_DbContext = dbContext;
 }
Example #3
0
 public LogCleanerService(ILoggingDbContext logDbContext, ILoggingExecutionLogService executionLogService)
 {
     m_LogDbContext        = logDbContext;
     m_ExecutionLogService = executionLogService;
 }
Example #4
0
 public LogCleanerService(ILoggingDbContext logDbContext, ILoggerService executionLogService)
 {
     _logDbContext        = logDbContext;
     _executionLogService = executionLogService;
 }
 public LogRepository(ILoggingDbContext context)
 {
     _context = context;
 }