private void buttonDodaj_Click(object sender, EventArgs e) { Ocjena o = new Ocjena(); o.NastavakId = nastavakId; o.Autor = textBoxAutor.Text.Trim(); o.Komentar = textBoxKomentar.Text.Trim(); o.OcjenaInt = (int)ComboBoxOcjena.SelectedValue; o.Vrijeme = DateTime.Now; _controller.AddOcjena(o); this.Close(); MessageBox.Show("Podaci pohranjeni u bazu"); }