private void analyzer_OnFileAnalyzed(IRowModel file) { var temp = DataGridCollection.First(x => x.FileName.Equals(file.FileName)); if (temp != null) { temp.Analyzed = true; temp.CheckedToAnalysis = false; } }
public Row(IRowModel model) { this._model = model; }
internal Row(IRowModel model) { _model = model; }