public void AddProjectPipeProgressRow(ProjectPipeProgressRow row) {
     this.Rows.Add(row);
 }
 public void RemoveProjectPipeProgressRow(ProjectPipeProgressRow row) {
     this.Rows.Remove(row);
 }
 public ProjectPipeProgressRowChangeEvent(ProjectPipeProgressRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }