Esempio n. 1
0
            public productRow AddproductRow(string product_id, string name, string list_price)
            {
                productRow rowproductRow = ((productRow)(this.NewRow()));

                rowproductRow.ItemArray = new object[] {
                    product_id,
                    name,
                    list_price
                };
                this.Rows.Add(rowproductRow);
                return(rowproductRow);
            }
Esempio n. 2
0
 public productRowChangeEvent(productRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Esempio n. 3
0
 public productRowChangeEvent(productRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
Esempio n. 4
0
 public void RemoveproductRow(productRow row) {
     this.Rows.Remove(row);
 }
Esempio n. 5
0
 public void AddproductRow(productRow row) {
     this.Rows.Add(row);
 }
Esempio n. 6
0
 public void RemoveproductRow(productRow row)
 {
     this.Rows.Remove(row);
 }
Esempio n. 7
0
 public void AddproductRow(productRow row)
 {
     this.Rows.Add(row);
 }