public SummaryTaskPathRow AddSummaryTaskPathRow(System.Guid TASK_UID, string TASK_NAME) { SummaryTaskPathRow rowSummaryTaskPathRow = ((SummaryTaskPathRow)(this.NewRow())); object[] columnValuesArray = new object[] { TASK_UID, TASK_NAME }; rowSummaryTaskPathRow.ItemArray = columnValuesArray; this.Rows.Add(rowSummaryTaskPathRow); return(rowSummaryTaskPathRow); }
public SummaryTaskPathRowChangeEvent(SummaryTaskPathRow row, global::System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemoveSummaryTaskPathRow(SummaryTaskPathRow row) { this.Rows.Remove(row); }
public void AddSummaryTaskPathRow(SummaryTaskPathRow row) { this.Rows.Add(row); }