private void Buscarbutton_Click(object sender, EventArgs e)
        {
            Lotes lote = new Lotes();
            Exportacion exportacion = new Exportacion();
            int.TryParse(ExportacionIdtextBox.Text, out idbuscado);
            lote.ExportacionId = idbuscado;
            lote.Buscar(idbuscado);

                exportacion.Fecha = FechadateTimePicker.Text;

                foreach (var item in exportacion.Lotes)
                {
                LotesdataGridView.Rows.Add(item.CodigoLote);
                }
        }
        private void button3_Click(object sender, EventArgs e)
        {
            //LotesdataGridView.Items.Add(LoteIdcomboBox.Text);
            Lotes lotes = new Lotes();
            DataTable dt = new DataTable();

            lotes.Buscar((int)LoteIdcomboBox.SelectedValue);
            this.LotesdataGridView.Rows.Add(LoteIdcomboBox.SelectedValue.ToString(), lotes.Total.ToString());

            double.TryParse(PreciotextBox.Text, out precio);
            total += lotes.Total * precio;

            TotaltextBox.Text = total.ToString();

            total = Monto;
        }