public tbExportadoresBancosRow AddtbExportadoresBancosRow(int nIdExportador, int nIdBanco, string strNome, string strUltimaAgencia)
            {
                tbExportadoresBancosRow rowtbExportadoresBancosRow = ((tbExportadoresBancosRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    nIdExportador,
                    nIdBanco,
                    strNome,
                    strUltimaAgencia
                };
                rowtbExportadoresBancosRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowtbExportadoresBancosRow);
                return(rowtbExportadoresBancosRow);
            }
 public tbExportadoresBancosRowChangeEvent(tbExportadoresBancosRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemovetbExportadoresBancosRow(tbExportadoresBancosRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddtbExportadoresBancosRow(tbExportadoresBancosRow row)
 {
     this.Rows.Add(row);
 }