コード例 #1
0
ファイル: dsWT.Designer.cs プロジェクト: kabiraman/WorldTime
 public void AddContinentRow(ContinentRow row) {
     this.Rows.Add(row);
 }
コード例 #2
0
ファイル: dsWT.Designer.cs プロジェクト: kabiraman/WorldTime
 public ContinentRowChangeEvent(ContinentRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
コード例 #3
0
ファイル: dsWT.Designer.cs プロジェクト: kabiraman/WorldTime
 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;
 }
コード例 #4
0
ファイル: dsWT.Designer.cs プロジェクト: kabiraman/WorldTime
 public void RemoveContinentRow(ContinentRow row) {
     this.Rows.Remove(row);
 }