Exemplo n.º 1
0
            public RefCountryRow AddRefCountryRow(string CountryCode, string CountryName)
            {
                RefCountryRow rowRefCountryRow = ((RefCountryRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    CountryCode,
                    CountryName
                };
                rowRefCountryRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowRefCountryRow);
                return(rowRefCountryRow);
            }
Exemplo n.º 2
0
 public RefCountryRowChangeEvent(RefCountryRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemplo n.º 3
0
 public void RemoveRefCountryRow(RefCountryRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 4
0
 public void AddRefCountryRow(RefCountryRow row)
 {
     this.Rows.Add(row);
 }