public static void dodajTelefon(TelefonPregled t) { try { ISession s = DataLayer.GetSession(); Telefoni telefon = new Telefoni(); telefon.Staratelj_Id = s.Load <Staratelj>(t.idStaratelja); telefon.BrojTelefona = t.BrojTelefona; s.Save(telefon); s.Flush(); s.Close(); } catch (Exception ec) { //handle exceptions } }
private void btnDodajTelefon_Click(object sender, EventArgs e) { if (txbTelefon.Text.Length > 15 || txbTelefon.Text == "") { MessageBox.Show("Nevalidan unos broja telefona!"); return; } if (listaStaratelja.SelectedItems.Count == 0) { MessageBox.Show("Izaberite staratelja kome zelite da dodate broj telefona!"); return; } int idStaratelja = Int32.Parse(listaStaratelja.SelectedItems[0].SubItems[0].Text); TelefonPregled t = new TelefonPregled(idStaratelja, txbTelefon.Text); DTOManager.dodajTelefon(t); MessageBox.Show("Uspesno ste dodali novi broj telefona!"); popuniTelefone(); txbTelefon.ResetText(); }