Пример #1
0
 public CentralLogServiceWatcher(IAutoCurrentFileList watchCurrentFileList, ICentralLogService centralLogService)
 {
     _watchCurrentFileList = watchCurrentFileList;
     _centralLogService    = centralLogService;
 }
Пример #2
0
 public AggregateLogs(ICentralLogService centralLog)
 {
     _centralLog = centralLog;
 }
Пример #3
0
 public CentralLogServiceWatcher(IConfiguration config, IAutoCurrentFileList watchCurrentFileList, ICentralLogService centralLogService)
 {
     _watchCurrentFileList = watchCurrentFileList;
     _centralLogService    = centralLogService;
     _directory            = config["WatchDirectory"];
 }