Exemple #1
0
            public CustOrderHistRow AddCustOrderHistRow(string ProductName, int Total)
            {
                CustOrderHistRow rowCustOrderHistRow = ((CustOrderHistRow)(this.NewRow()));

                rowCustOrderHistRow.ItemArray = new object[] {
                    ProductName,
                    Total
                };
                this.Rows.Add(rowCustOrderHistRow);
                return(rowCustOrderHistRow);
            }
Exemple #2
0
 public CustOrderHistRowChangeEvent(CustOrderHistRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemple #3
0
 public void RemoveCustOrderHistRow(CustOrderHistRow row)
 {
     this.Rows.Remove(row);
 }
Exemple #4
0
 public void AddCustOrderHistRow(CustOrderHistRow row)
 {
     this.Rows.Add(row);
 }
 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;
 }