private void btnDodaj_Click(object sender, EventArgs e) { UgovorDodajAzuriraj uda = new UgovorDodajAzuriraj(); if (uda.ShowDialog() == System.Windows.Forms.DialogResult.OK) { PopulateInfos(); } }
private void btnAzuriraj_Click(object sender, EventArgs e) { if (listView1.SelectedItems.Count == 0) { MessageBox.Show("Odaberite ugovor!"); return; } int ugId = Int32.Parse(listView1.SelectedItems[0].SubItems[0].Text); UgovorBasic ub = DTOManager.GetUgovorBasic(ugId); UgovorDodajAzuriraj uda = new UgovorDodajAzuriraj(ub); if (uda.ShowDialog() == System.Windows.Forms.DialogResult.OK) { PopulateInfos(); } }