public tbProdutosIdiomasRow AddtbProdutosIdiomasRow(int idExportador, int idIdioma, int idProduto, string strDescricao, string mstrDescricao)
            {
                tbProdutosIdiomasRow rowtbProdutosIdiomasRow = ((tbProdutosIdiomasRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    idExportador,
                    idIdioma,
                    idProduto,
                    strDescricao,
                    mstrDescricao
                };
                rowtbProdutosIdiomasRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowtbProdutosIdiomasRow);
                return(rowtbProdutosIdiomasRow);
            }
 public tbProdutosIdiomasRowChangeEvent(tbProdutosIdiomasRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemovetbProdutosIdiomasRow(tbProdutosIdiomasRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddtbProdutosIdiomasRow(tbProdutosIdiomasRow row)
 {
     this.Rows.Add(row);
 }