示例#1
0
            public dtProductReorderRow AdddtProductReorderRow(string ProductNumber, string Name, string Color, int ReorderPoint)
            {
                dtProductReorderRow rowdtProductReorderRow = ((dtProductReorderRow)(this.NewRow()));

                rowdtProductReorderRow.ItemArray = new object[] {
                    ProductNumber,
                    Name,
                    Color,
                    ReorderPoint
                };
                this.Rows.Add(rowdtProductReorderRow);
                return(rowdtProductReorderRow);
            }
示例#2
0
 public dtProductReorderRowChangeEvent(dtProductReorderRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
示例#3
0
 public void RemovedtProductReorderRow(dtProductReorderRow row)
 {
     this.Rows.Remove(row);
 }
示例#4
0
 public void AdddtProductReorderRow(dtProductReorderRow row)
 {
     this.Rows.Add(row);
 }