public ProcessLogFile(DbContextService dbService, ProcessLogNotifier logNotifier, string fileName) :
     this(dbService, logNotifier)
 {
     _fileName = fileName;
 }
 public ProcessLogFile(DbContextService dbService, ProcessLogNotifier logNotifier, ObjectId sessionId) :
     this(dbService, logNotifier)
 {
     _sessionId = sessionId;
 }
 public ProcessLogFile(DbContextService dbService, ProcessLogNotifier logNotifier)
 {
     _dbService          = dbService;
     _processLogNotifier = logNotifier;
 }