Exemple #1
0
            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);
            }
Exemple #2
0
 public TblPassiRowChangeEvent(TblPassiRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemple #3
0
 public void RemoveTblPassiRow(TblPassiRow row)
 {
     this.Rows.Remove(row);
 }
Exemple #4
0
 public void AddTblPassiRow(TblPassiRow row)
 {
     this.Rows.Add(row);
 }