public void AddTitleVariablesRow(TitleVariablesRow row) {
     this.Rows.Add(row);
 }
 public void RemoveTitleVariablesRow(TitleVariablesRow row) {
     this.Rows.Remove(row);
 }
 public TitleVariablesRowChangeEvent(TitleVariablesRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }