public TblPassiRow AddTblPassiRow(string ISTRUZIONE, long PASSO, long ID_PMP) { TblPassiRow rowTblPassiRow = ((TblPassiRow)(this.NewRow())); rowTblPassiRow.ItemArray = new object[] { ISTRUZIONE, PASSO, ID_PMP }; this.Rows.Add(rowTblPassiRow); return(rowTblPassiRow); }
public TblPassiRowChangeEvent(TblPassiRow row, DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemoveTblPassiRow(TblPassiRow row) { this.Rows.Remove(row); }
public void AddTblPassiRow(TblPassiRow row) { this.Rows.Add(row); }