Beispiel #1
0
 public LogReader(IDatabase database, IReadOnlyFilesManager filesManager, IMapper mapper,
                  IHttpContextWriter httpContextWriter, LogKeyWordsDictionary logKeyWordsDictionary)
 {
     this.database              = database;
     this.filesManager          = filesManager;
     this.mapper                = mapper;
     this.httpContextWriter     = httpContextWriter;
     this.logKeyWordsDictionary = logKeyWordsDictionary;
 }
 public StatsMemoryCacheService(IMemoryCache memoryCache, IReadOnlyFilesManager filesManager) : base(memoryCache)
 {
     this.filesManager = filesManager;
 }
Beispiel #3
0
 public LogReader(IReadOnlyFilesManager filesManager, LogKeyWordsDictionary logKeyWordsDictionary)
 {
     this.filesManager          = filesManager;
     this.logKeyWordsDictionary = logKeyWordsDictionary;
 }
Beispiel #4
0
 public CategoryService(IUnitOfWork unitOfWork, IReadOnlyFilesManager filesManager)
 {
     this.unitOfWork   = unitOfWork;
     this.filesManager = filesManager;
 }