public WriteStore(TimeSpan timerInterval) { _timer = new Timer() { AutoReset = true, Enabled = true, Interval = timerInterval.TotalMilliseconds }; _timer.Elapsed += new ElapsedEventHandler(_timer_Elapsed); _timer.Start(); FilePathProvider = new FilePaths(); }
public QueryStore() { FilePathProvider = new FilePaths(); }