private void button2_Click(object sender, EventArgs e) { if (themeExist(listBox1.SelectedItem.ToString())) { themes theme = new themes(); theme.tname = textBox1.Text; theme.did = CurrentUser.TeacherDiscipline; db.themes.Remove(themeExistDel(listBox1.SelectedItem.ToString())); db.SaveChanges(); } else { MessageBox.Show("Такая тема уже существует", "Невозможно добавить тему"); } ReloadThemesList(); }
private void button1_Click(object sender, EventArgs e) { if (themeExist(textBox1.Text) == false) { themes theme = new themes(); theme.tname = textBox1.Text; theme.did = CurrentUser.TeacherDiscipline; db.themes.Add(theme); db.SaveChanges(); } else { MessageBox.Show("Такая тема уже существует", "Невозможно добавить тему"); } ReloadThemesList(); }