public void RemovePOItemsReportRow(POItemsReportRow row) {
     this.Rows.Remove(row);
 }
 public POItemsReportRowChangeEvent(POItemsReportRow row, DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void AddPOItemsReportRow(POItemsReportRow row) {
     this.Rows.Add(row);
 }