private void btnAzuriranje_Click(object sender, EventArgs e) { if (tbbrTel.Text == "" || tbadresa.Text == "" || tbemail.Text == "" || tbJMBG.Text == "") { MessageBox.Show("Morate uneti broj telefona, adresu i email."); } else { try { Bazaa.azuriranjeRadnika(tbbrTel.Text, tbadresa.Text, tbemail.Text, tbJMBG.Text); MessageBox.Show("Uspešno"); } catch (Exception ex) { MessageBox.Show(ex.Message); } } }