public void WriteFinishSuper(string results = null) { RunHistoryOperation(_superHistory, () => { if (_superHistory.HasRows) { _superHistory.MoveLast(); _superHistory.Put("Status", ProgressCommand.Status); _superHistory.Put("Results", results); _superHistory.Put("ProcessLength", ProgressCommand.FromStart); } _superHistoryId = 0; }); }
public void WriteFinish(string results) { LogEventTime = DateTime.Now; RunHistoryOperation(_history, () => { if (_history.HasRows) { _history.MoveLast(); _history.Put("Status", LogCommand.Status); _history.Put("Results", results); _history.Put("ProcessLength", LogCommand.FromStart); } _historyId = 0; }); }