コード例 #1
0
ファイル: CountryDS.cs プロジェクト: jpheary/Argix08
            public CountryDetailTableRow AddCountryDetailTableRow(int CountryID, string Country, System.DateTime LastUpdated, string UserID, System.Byte[] RowVersionID)
            {
                CountryDetailTableRow rowCountryDetailTableRow = ((CountryDetailTableRow)(this.NewRow()));

                rowCountryDetailTableRow.ItemArray = new object[] {
                    CountryID,
                    Country,
                    LastUpdated,
                    UserID,
                    RowVersionID
                };
                this.Rows.Add(rowCountryDetailTableRow);
                return(rowCountryDetailTableRow);
            }
コード例 #2
0
ファイル: CountryDS.cs プロジェクト: jpheary/Argix08
 public CountryDetailTableRowChangeEvent(CountryDetailTableRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
コード例 #3
0
ファイル: CountryDS.cs プロジェクト: jpheary/Argix08
 public void RemoveCountryDetailTableRow(CountryDetailTableRow row)
 {
     this.Rows.Remove(row);
 }
コード例 #4
0
ファイル: CountryDS.cs プロジェクト: jpheary/Argix08
 public void AddCountryDetailTableRow(CountryDetailTableRow row)
 {
     this.Rows.Add(row);
 }