public void AddChangeLogRow(ChangeLogRow row) {
     this.Rows.Add(row);
 }
 public void RemoveChangeLogRow(ChangeLogRow row) {
     this.Rows.Remove(row);
 }
 public ChangeLogRowChangeEvent(ChangeLogRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }