private void btnIzmjeni_Click(object sender, RoutedEventArgs e)
        {
            List<int> broj = new List<int>();
            Pomocni_prozori.ID id = new Pomocni_prozori.ID(broj);

            if (id.ShowDialog() == true)
            {
                bool imaGa = false;
                InterniUgovor iu = null;
                foreach (InterniUgovor i in Iugovori)
                {
                    if (i.ID == broj[0]) { imaGa = true; iu = i; break; }
                }

                if (imaGa == true)
                {
                    Pomocni_prozori.UnosIugovora IU = new Pomocni_prozori.UnosIugovora(_zaposlenici.ListaZaposlenika, klijeti,
                nekretnine, Iugovori);
                    if (IU.ShowDialog() == true)
                    {
                        InterniUgovorDAO dao = new InterniUgovorDAO();
                        dao.Delete(iu);
                        refreshIBaza();
                        refreshI();
                    }
                }
                else MessageBox.Show("ID koji ste unijeli ne postoji!");

                refreshIBaza();
                refreshI();
            }
        }
        private void obrisiI_Click(object sender, RoutedEventArgs e)
        {
            List<int> broj = new List<int>();
            Pomocni_prozori.ID id = new Pomocni_prozori.ID(broj);

            if (id.ShowDialog() == true)
            {
                bool imaGa = false;
                InterniUgovor iu = null;
                foreach (InterniUgovor i in Iugovori)
                {
                    if (i.ID == broj[0]) { imaGa = true; iu = i; break; }
                }

                if (imaGa == true)
                {
                    InterniUgovorDAO dao = new InterniUgovorDAO();
                    dao.Delete(iu);
                }
                else MessageBox.Show("ID koji ste unijeli ne postoji!");

                refreshIBaza();
                refreshI();
            }
        }
        void Test()
        {
            return;
            InterniUgovor E = new InterniUgovor ();
            E.Opis = "Ovo je jedan interni ugovor!!";
            E.DatumSklapanja = DateTime.Today;
            E.ID = 2;
            InterniUgovorDAO d = new InterniUgovorDAO ();
            d.Delete (E);
            return;
            E.ID = 2;

            System.Windows.Forms.MessageBox.Show ("Izbrisao!");
            InterniUgovor S = d.Read (E);
            System.Windows.Forms.MessageBox.Show (S.Opis);
            System.Windows.Forms.MessageBox.Show (S.DatumSklapanja.ToString());
        }