public dtAccessRow AdddtAccessRow(string ProductName, string CategoryName, string QuantityPerUnit, int UnitsInStock)
            {
                dtAccessRow rowdtAccessRow = ((dtAccessRow)(this.NewRow()));

                rowdtAccessRow.ItemArray = new object[] {
                    ProductName,
                    CategoryName,
                    QuantityPerUnit,
                    UnitsInStock
                };
                this.Rows.Add(rowdtAccessRow);
                return(rowdtAccessRow);
            }
 public dtAccessRowChangeEvent(dtAccessRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemovedtAccessRow(dtAccessRow row)
 {
     this.Rows.Remove(row);
 }
 public void AdddtAccessRow(dtAccessRow row)
 {
     this.Rows.Add(row);
 }