Exemple #1
0
 public TimezoneRowChangeEvent(TimezoneRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
Exemple #2
0
 public void RemoveTimezoneRow(TimezoneRow row) {
     this.Rows.Remove(row);
 }
Exemple #3
0
 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;
 }
Exemple #4
0
 public void AddTimezoneRow(TimezoneRow row) {
     this.Rows.Add(row);
 }