Ejemplo n.º 1
0
            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);
            }
Ejemplo n.º 2
0
 public BanksRowChangeEvent(BanksRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Ejemplo n.º 3
0
 public void RemoveBanksRow(BanksRow row)
 {
     this.Rows.Remove(row);
 }
Ejemplo n.º 4
0
 public void AddBanksRow(BanksRow row)
 {
     this.Rows.Add(row);
 }
Ejemplo n.º 5
0
 public BanksRowChangeEvent(BanksRow row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }