public tbProdutosBorderoRow AddtbProdutosBorderoRow(int nIdExportador, string strIdPe, int nIdContratoCambio, double dValor, int nIdMoeda, double dTaxaCambial, bool bLiquidado, int nDocumento)
            {
                tbProdutosBorderoRow rowtbProdutosBorderoRow = ((tbProdutosBorderoRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    nIdExportador,
                    strIdPe,
                    nIdContratoCambio,
                    dValor,
                    nIdMoeda,
                    dTaxaCambial,
                    bLiquidado,
                    nDocumento
                };
                rowtbProdutosBorderoRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowtbProdutosBorderoRow);
                return(rowtbProdutosBorderoRow);
            }
 public tbProdutosBorderoRowChangeEvent(tbProdutosBorderoRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemovetbProdutosBorderoRow(tbProdutosBorderoRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddtbProdutosBorderoRow(tbProdutosBorderoRow row)
 {
     this.Rows.Add(row);
 }