public void Insert(object sender, EventArgs e) { using (uscNacinIsplateElement user_control = new uscNacinIsplateElement(Enums.FormEditMode.Insert)) { if (user_control.ShowDialogForm("Način isplate element") == DialogResult.OK) { LoadGridNacinIsplateElement(); } } }
public void Update(object sender, EventArgs e) { if (ugdNacinIsplateElementPregled.ActiveRow != null) { BusinessLogic.pID = (int)ugdNacinIsplateElementPregled.ActiveRow.Cells["ID"].Value; BusinessLogic.pJOPPDOznaka = (int)ugdNacinIsplateElementPregled.ActiveRow.Cells["JOPPDOznakaNacinaIsplateID"].Value; BusinessLogic.pElement = (int)ugdNacinIsplateElementPregled.ActiveRow.Cells["IDELEMENT"].Value; using (uscNacinIsplateElement user_control = new uscNacinIsplateElement(Enums.FormEditMode.Update)) { if (user_control.ShowDialogForm("Način isplate element") == DialogResult.OK) { LoadGridNacinIsplateElement(); } } } }