private void btnPrikazi_Click(object sender, EventArgs e)
        {
            if (listViewUzvisenja.SelectedItems.Count == 0)
            {
                MessageBox.Show("Morate odabrati objekat.", "Obavestenje",
                                MessageBoxButtons.OK, MessageBoxIcon.Information);
                return;
            }

            int            odId = Int32.Parse(listViewUzvisenja.SelectedItems[0].SubItems[0].Text);
            UzvisenjeBasic u    = DTOManager.vratiUzvisenje(odId);

            MFormDodajAzurirajUzvisenje f = new MFormDodajAzurirajUzvisenje(u);

            f.btnDodajGeog.Enabled          = false;
            f.btnDodajPostojeciGeog.Enabled = false;
            f.btnDodajPostojeciV.Enabled    = false;
            f.btnDodajVrh.Enabled           = false;
            if (f.ShowDialog() == System.Windows.Forms.DialogResult.OK)
            {
                f.btnDodajGeog.Enabled          = true;
                f.btnDodajPostojeciGeog.Enabled = true;
                f.btnDodajPostojeciV.Enabled    = true;
                f.btnDodajVrh.Enabled           = true;
            }
        }
        private void btnDodajNovi_Click(object sender, EventArgs e)
        {
            MFormDodajAzurirajUzvisenje f = new MFormDodajAzurirajUzvisenje();

            if (f.ShowDialog() == DialogResult.OK)
            {
                DTOManager.dodajNovoUzvisenje(f.uzvisenje);
                this.popuniListu();
            }
        }
        private void btnAzuriraj_Click(object sender, EventArgs e)
        {
            if (listViewUzvisenja.SelectedItems.Count == 0)
            {
                MessageBox.Show("Morate odabrati objekat.", "Obavestenje",
                                MessageBoxButtons.OK, MessageBoxIcon.Information);
                return;
            }

            int            odId = Int32.Parse(listViewUzvisenja.SelectedItems[0].SubItems[0].Text);
            UzvisenjeBasic u    = DTOManager.vratiUzvisenje(odId);

            MFormDodajAzurirajUzvisenje f = new MFormDodajAzurirajUzvisenje(u);

            if (f.ShowDialog() == System.Windows.Forms.DialogResult.OK)
            {
                DTOManager.azurirajUzvisenje(f.uzvisenje);
                popuniListu();
            }
        }