public BanksRow AddBanksRow(string BankName, int CityID, string CodeBIK, string KAccount, string CityName) { BanksRow rowBanksRow = ((BanksRow)(this.NewRow())); rowBanksRow.ItemArray = new object[] { null, BankName, CityID, CodeBIK, KAccount, CityName }; this.Rows.Add(rowBanksRow); return(rowBanksRow); }
public BanksRowChangeEvent(BanksRow row, global::System.Data.DataRowAction action) { this.eventRow = row; this.eventAction = action; }
public void RemoveBanksRow(BanksRow row) { this.Rows.Remove(row); }
public void AddBanksRow(BanksRow row) { this.Rows.Add(row); }
public BanksRowChangeEvent(BanksRow row, DataRowAction action) { this.eventRow = row; this.eventAction = action; }