public countryRow AddcountryRow(string ct_code, string ct_name)
            {
                countryRow rowcountryRow = ((countryRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    ct_code,
                    ct_name
                };
                rowcountryRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowcountryRow);
                return(rowcountryRow);
            }
Example #2
0
 public countryRowChangeEvent(countryRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
Example #3
0
 public void RemovecountryRow(countryRow row) {
     this.Rows.Remove(row);
 }
Example #4
0
 public void AddcountryRow(countryRow row) {
     this.Rows.Add(row);
 }
 public countryRowChangeEvent(countryRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemovecountryRow(countryRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddcountryRow(countryRow row)
 {
     this.Rows.Add(row);
 }