示例#1
0
            public TblGestioneMaterialiRow AddTblGestioneMaterialiRow(System.Decimal ID, System.Decimal WR_ID, System.Decimal ID_MATERIALE, string DESCRIZIONE, System.Decimal PREZZO_UNITARIO, System.Decimal QUANTITA, System.Decimal TOTALE, System.Decimal TOTALEENTRATA, System.Decimal TOTALEUSCITA, System.Decimal QUANTITAENTRATA, System.Decimal QUANTITAUSCITA, System.DateTime DATA_INSERIMENTO)
            {
                TblGestioneMaterialiRow rowTblGestioneMaterialiRow = ((TblGestioneMaterialiRow)(this.NewRow()));

                rowTblGestioneMaterialiRow.ItemArray = new object[] {
                    ID,
                    WR_ID,
                    ID_MATERIALE,
                    DESCRIZIONE,
                    PREZZO_UNITARIO,
                    QUANTITA,
                    TOTALE,
                    TOTALEENTRATA,
                    TOTALEUSCITA,
                    QUANTITAENTRATA,
                    QUANTITAUSCITA,
                    DATA_INSERIMENTO
                };
                this.Rows.Add(rowTblGestioneMaterialiRow);
                return(rowTblGestioneMaterialiRow);
            }
示例#2
0
 public TblGestioneMaterialiRowChangeEvent(TblGestioneMaterialiRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
示例#3
0
 public void RemoveTblGestioneMaterialiRow(TblGestioneMaterialiRow row)
 {
     this.Rows.Remove(row);
 }
示例#4
0
 public void AddTblGestioneMaterialiRow(TblGestioneMaterialiRow row)
 {
     this.Rows.Add(row);
 }