Esempio n. 1
0
            public transaction_tableRow Addtransaction_tableRow(string transaction)
            {
                transaction_tableRow rowtransaction_tableRow = ((transaction_tableRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    transaction
                };
                rowtransaction_tableRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowtransaction_tableRow);
                return(rowtransaction_tableRow);
            }
Esempio n. 2
0
 public transaction_tableRowChangeEvent(transaction_tableRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Esempio n. 3
0
 public void Removetransaction_tableRow(transaction_tableRow row)
 {
     this.Rows.Remove(row);
 }
Esempio n. 4
0
 public void Addtransaction_tableRow(transaction_tableRow row)
 {
     this.Rows.Add(row);
 }