public CurrentStatusRow AddCurrentStatusRow(long CURENTSTID, string NAME) { CurrentStatusRow rowCurrentStatusRow = ((CurrentStatusRow)(this.NewRow())); object[] columnValuesArray = new object[] { CURENTSTID, NAME }; rowCurrentStatusRow.ItemArray = columnValuesArray; this.Rows.Add(rowCurrentStatusRow); return(rowCurrentStatusRow); }
public CurrentStatusRowChangeEvent(CurrentStatusRow row, global::System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemoveCurrentStatusRow(CurrentStatusRow row) { this.Rows.Remove(row); }
public void AddCurrentStatusRow(CurrentStatusRow row) { this.Rows.Add(row); }