private void EditButton_Click(object sender, EventArgs e) { if (userTable.SelectedRows.Count > 0) { try { int index = (Int32)userTable.CurrentCell.Value; UsersSet userSet = database.UsersSet.Find(index); UserInformationForm userInformationForm = new UserInformationForm(); userInformationForm.textBox1.Text = userSet.Фамилия; userInformationForm.textBox2.Text = userSet.Имя; userInformationForm.textBox3.Text = userSet.Отчество; userInformationForm.textBox4.Text = userSet.Ссылка; userInformationForm.comboBox4.Text = userSet.ейтинг; userInformationForm.textBox5.Text = userSet.Пояснения; DialogResult result = userInformationForm.ShowDialog(this); if (result == DialogResult.Cancel) { return; } userSet.Фамилия = userInformationForm.textBox1.Text; userSet.Имя = userInformationForm.textBox2.Text; userSet.Отчество = userInformationForm.textBox3.Text; userSet.Ссылка = userInformationForm.textBox4.Text; userSet.ДатаСобеседования = userInformationForm.dateTimePicker1.Value.ToShortDateString(); userSet.ейтинг = userInformationForm.comboBox4.Text; userSet.Пояснения = userInformationForm.textBox5.Text; Skills skills = database.SkillsSet.Find(index); skills.ЯзыкиПрограммирования = string.Join(", ", userInformationForm.listBox1.Items.Cast <Skills>()); skills.Фреймворки = string.Join(", ", userInformationForm.listBox2.Items.Cast <Skills>()); skills.Библиотеки = string.Join(", ", userInformationForm.listBox3.Items.Cast <Skills>()); InterviewersSet interviewersSet = database.InterviewersSet.Find(index); interviewersSet.ФИО = string.Join(", ", userInformationForm.listBox5.Items.Cast <InterviewersSet>()); database.SaveChanges(); userTable.Refresh(); skillTable.Refresh(); interviewerTable.Refresh(); } catch { MessageBox.Show("Выберите номер Id строки, которую требуется отредактировать!", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error); }; } }
private void AddButton_Click(object sender, EventArgs e) { UserInformationForm userInformationForm = new UserInformationForm(); List <Skills> skillsSet = database.SkillsSet.ToList(); DialogResult result = userInformationForm.ShowDialog(this); if (result == DialogResult.Cancel) { return; } skillsSet.Clear(); UsersSet user = new UsersSet { Фамилия = userInformationForm.textBox1.Text, Имя = userInformationForm.textBox2.Text, Отчество = userInformationForm.textBox3.Text, Ссылка = userInformationForm.textBox4.Text, ДатаСобеседования = userInformationForm.dateTimePicker1.Value.ToShortDateString(), ейтинг = userInformationForm.comboBox4.Text, Пояснения = userInformationForm.textBox5.Text }; database.UsersSet.Add(user); userTable.Refresh(); Skills skills = new Skills { ЯзыкиПрограммирования = string.Join(", ", userInformationForm.listBox1.Items.Cast <Skills>()), Фреймворки = string.Join(", ", userInformationForm.listBox2.Items.Cast <Skills>()), Библиотеки = string.Join(", ", userInformationForm.listBox3.Items.Cast <Skills>()) }; database.SkillsSet.Add(skills); skillTable.Refresh(); InterviewersSet interviewersSet = new InterviewersSet { ФИО = string.Join(", ", userInformationForm.listBox5.Items.Cast <InterviewersSet>()) }; database.InterviewersSet.Add(interviewersSet); interviewerTable.Refresh(); database.SaveChanges(); }