public TimezoneRowChangeEvent(TimezoneRow row, System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemoveTimezoneRow(TimezoneRow row) { this.Rows.Remove(row); }
public CityRow AddCityRow(StateRow parentStateRowByFK_State_City_State_ID, TimezoneRow parentTimezoneRowByFK_Timezone_City_Timezone_ID, string Name, bool Is_Country_Capital, string Phone_Code, string Weather_Code) { CityRow rowCityRow = ((CityRow)(this.NewRow())); rowCityRow.ItemArray = new object[] { null, parentStateRowByFK_State_City_State_ID[0], parentTimezoneRowByFK_Timezone_City_Timezone_ID[0], Name, Is_Country_Capital, Phone_Code, Weather_Code}; this.Rows.Add(rowCityRow); return rowCityRow; }
public void AddTimezoneRow(TimezoneRow row) { this.Rows.Add(row); }