public dtCustomerListRow AdddtCustomerListRow(string CustomerID, string FirstName, string LastName, string EmailAddress, string CountryRegionName)
            {
                dtCustomerListRow rowdtCustomerListRow = ((dtCustomerListRow)(this.NewRow()));

                rowdtCustomerListRow.ItemArray = new object[] {
                    CustomerID,
                    FirstName,
                    LastName,
                    EmailAddress,
                    CountryRegionName
                };
                this.Rows.Add(rowdtCustomerListRow);
                return(rowdtCustomerListRow);
            }
 public dtCustomerListRowChangeEvent(dtCustomerListRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemovedtCustomerListRow(dtCustomerListRow row)
 {
     this.Rows.Remove(row);
 }
 public void AdddtCustomerListRow(dtCustomerListRow row)
 {
     this.Rows.Add(row);
 }