private void btnSacuvaj_Click(object sender, EventArgs e)
        {
            _smesaID = saveSmesa();

            foreach (DataGridViewRow row in dgvVrednosti.Rows)
            {
                if (decimal.Parse(row.Cells["Vrednost"].Value.ToString()) != decimal.Parse(row.Cells["StaraVrednost"].Value.ToString()))
                {
                    _smesaNutritivniElementVrednostBL.SaveVrednost(new SmesaNutritivniElementVrednost()
                    {
                        SmesaID             = _smesaID,
                        NutritivniElementID = int.Parse(row.Cells["NutritivniElementID"].Value.ToString()),
                        Naziv    = row.Cells["Naziv"].Value.ToString(),
                        Vrednost = decimal.Parse(row.Cells["Vrednost"].Value.ToString())
                    });
                }
            }

            if (SmesaSaved != null)
            {
                SmesaSaved();
            }

            MessageBox.Show("Smeša uspešno sačuvana.", "Unos smeše", MessageBoxButtons.OK, MessageBoxIcon.Information);
            this.Close();
        }