public ProjectFlowStatusProgressRow AddProjectFlowStatusProgressRow(string id, string name, double count)
            {
                ProjectFlowStatusProgressRow rowProjectFlowStatusProgressRow = ((ProjectFlowStatusProgressRow)(this.NewRow()));

                rowProjectFlowStatusProgressRow.ItemArray = new object[] {
                    id,
                    name,
                    count
                };
                this.Rows.Add(rowProjectFlowStatusProgressRow);
                return(rowProjectFlowStatusProgressRow);
            }
 public ProjectFlowStatusProgressRowChangeEvent(ProjectFlowStatusProgressRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveProjectFlowStatusProgressRow(ProjectFlowStatusProgressRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddProjectFlowStatusProgressRow(ProjectFlowStatusProgressRow row)
 {
     this.Rows.Add(row);
 }
 public ProjectFlowStatusProgressRowChangeEvent(ProjectFlowStatusProgressRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void RemoveProjectFlowStatusProgressRow(ProjectFlowStatusProgressRow row) {
     this.Rows.Remove(row);
 }
 public void AddProjectFlowStatusProgressRow(ProjectFlowStatusProgressRow row) {
     this.Rows.Add(row);
 }