public void AddReportInformationRow(ReportInformationRow row) {
     this.Rows.Add(row);
 }
 public void RemoveReportInformationRow(ReportInformationRow row) {
     this.Rows.Remove(row);
 }
 public ReportInformationRowChangeEvent(ReportInformationRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }