Example #1
0
            public CountrysRow AddCountrysRow(string Iso, string DisplayName)
            {
                CountrysRow rowCountrysRow = ((CountrysRow)(this.NewRow()));

                rowCountrysRow.ItemArray = new object[] {
                    Iso,
                    DisplayName
                };
                this.Rows.Add(rowCountrysRow);
                return(rowCountrysRow);
            }
 public CountrysRowChangeEvent(CountrysRow row, DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void RemoveCountrysRow(CountrysRow row) {
     this.Rows.Remove(row);
 }
 public void AddCountrysRow(CountrysRow row) {
     this.Rows.Add(row);
 }
 public CountrysRowChangeEvent(CountrysRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
Example #6
0
 public CountrysRowChangeEvent(CountrysRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Example #7
0
 public void RemoveCountrysRow(CountrysRow row)
 {
     this.Rows.Remove(row);
 }
Example #8
0
 public void AddCountrysRow(CountrysRow row)
 {
     this.Rows.Add(row);
 }
Example #9
0
 public CountrysRowChangeEvent(CountrysRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }