예제 #1
0
파일: MarkFrm.cs 프로젝트: AlexEssive/EFDB
        private void button1_Click(object sender, EventArgs e)
        {
            MarkAdd        tForm    = new MarkAdd();
            List <Student> students = db.Students.ToList();
            List <Subject> subjects = db.Subjects.ToList();

            tForm.comboBox1.DataSource    = subjects;
            tForm.comboBox1.ValueMember   = "Id";
            tForm.comboBox1.DisplayMember = "Name";
            tForm.comboBox2.DataSource    = students;
            tForm.comboBox2.ValueMember   = "Id";
            tForm.comboBox2.DisplayMember = "Surname";

            DialogResult result = tForm.ShowDialog(this);

            if (result == DialogResult.Cancel)
            {
                return;
            }
            Mark mark = new Mark();

            mark.Smark   = Convert.ToInt32(tForm.textBox1.Text);
            mark.Subject = (Subject)tForm.comboBox1.SelectedItem;
            mark.Student = (Student)tForm.comboBox2.SelectedItem;

            db.Marks.Add(mark);
            db.SaveChanges();

            MessageBox.Show("Оценка добавлена");
            update();
        }
예제 #2
0
파일: MarkFrm.cs 프로젝트: AlexEssive/EFDB
        private void button2_Click(object sender, EventArgs e)
        {
            if (dataGridView1.SelectedRows.Count > 0)
            {
                int  index     = dataGridView1.SelectedRows[0].Index;
                int  id        = 0;
                bool converted = Int32.TryParse(dataGridView1[0, index].Value.ToString(), out id);
                if (converted == false)
                {
                    return;
                }

                Mark mark = db.Marks.Find(id);

                MarkAdd tForm = new MarkAdd();
                tForm.textBox1.Text = mark.Smark.ToString();

                List <Subject> subjects = db.Subjects.ToList();
                tForm.comboBox1.DataSource    = subjects;
                tForm.comboBox1.ValueMember   = "Id";
                tForm.comboBox1.DisplayMember = "Name";
                List <Student> students = db.Students.ToList();
                tForm.comboBox2.DataSource    = students;
                tForm.comboBox2.ValueMember   = "Id";
                tForm.comboBox2.DisplayMember = "Surname";

                if (mark.Subject != null)
                {
                    tForm.comboBox1.SelectedValue = mark.Subject.Id;
                }
                if (mark.Student != null)
                {
                    tForm.comboBox2.SelectedValue = mark.Student.Id;
                }

                DialogResult result = tForm.ShowDialog(this);

                if (result == DialogResult.Cancel)
                {
                    return;
                }

                mark.Smark   = Convert.ToInt32(tForm.textBox1.Text);
                mark.Subject = (Subject)tForm.comboBox1.SelectedItem;
                mark.Student = (Student)tForm.comboBox2.SelectedItem;

                db.Entry(mark).State = EntityState.Modified;
                db.SaveChanges();

                MessageBox.Show("Оценка обновлена");
                update();
            }
        }