예제 #1
0
            public dtBarcodeRow AdddtBarcodeRow(int ProductID, string Name, string Description)
            {
                dtBarcodeRow rowdtBarcodeRow = ((dtBarcodeRow)(this.NewRow()));

                rowdtBarcodeRow.ItemArray = new object[] {
                    ProductID,
                    Name,
                    Description
                };
                this.Rows.Add(rowdtBarcodeRow);
                return(rowdtBarcodeRow);
            }
예제 #2
0
 public dtBarcodeRowChangeEvent(dtBarcodeRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
예제 #3
0
 public void RemovedtBarcodeRow(dtBarcodeRow row)
 {
     this.Rows.Remove(row);
 }
예제 #4
0
 public void AdddtBarcodeRow(dtBarcodeRow row)
 {
     this.Rows.Add(row);
 }