Ejemplo n.º 1
0
 public void AddContinentRow(ContinentRow row) {
     this.Rows.Add(row);
 }
Ejemplo n.º 2
0
 public ContinentRowChangeEvent(ContinentRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
Ejemplo n.º 3
0
 public CountryRow AddCountryRow(ContinentRow parentContinentRowByFK_Continent_Country_Continent_ID, string Name, string Phone_Code) {
     CountryRow rowCountryRow = ((CountryRow)(this.NewRow()));
     rowCountryRow.ItemArray = new object[] {
             null,
             parentContinentRowByFK_Continent_Country_Continent_ID[0],
             Name,
             Phone_Code};
     this.Rows.Add(rowCountryRow);
     return rowCountryRow;
 }
Ejemplo n.º 4
0
 public void RemoveContinentRow(ContinentRow row) {
     this.Rows.Remove(row);
 }