public CustOrderHistRow AddCustOrderHistRow(string ProductName, int Total) { CustOrderHistRow rowCustOrderHistRow = ((CustOrderHistRow)(this.NewRow())); rowCustOrderHistRow.ItemArray = new object[] { ProductName, Total }; this.Rows.Add(rowCustOrderHistRow); return(rowCustOrderHistRow); }
public CustOrderHistRowChangeEvent(CustOrderHistRow row, DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemoveCustOrderHistRow(CustOrderHistRow row) { this.Rows.Remove(row); }
public void AddCustOrderHistRow(CustOrderHistRow row) { this.Rows.Add(row); }
public CustOrderHistRowChangeEvent(CustOrderHistRow row, System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }