public void AddNoteInformationRow(NoteInformationRow row) {
     this.Rows.Add(row);
 }
 public void RemoveNoteInformationRow(NoteInformationRow row) {
     this.Rows.Remove(row);
 }
 public NoteInformationRowChangeEvent(NoteInformationRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }