コード例 #1
0
        private void button1_Click(object sender, EventArgs e)
        {
            int a, b;

            if (tb1.Text == "" || tb2.Text == "" || tb3.Text == "" || tb4.Text == "" || tb5.Text == "" || tb6.Text == "")
            {
                MessageBox.Show("****Fill mandatory fields*****");
            }
            else if (!int.TryParse(tb3.Text, out a) || !(int.TryParse(tb4.Text, out b)))
            {
                MessageBox.Show("Year and Copies must be a correct value");
            }
            else
            {
                int rental = 0;
                if ((DateTime.Now.Year - a) > 5)
                {
                    rental = 2;
                }
                else
                {
                    rental = 5;
                }

                DBContextHelper database = new DBContextHelper();
                database.CreateMovie(tb1.Text, tb2.Text, tb3.Text, rental.ToString(), tb4.Text, tb5.Text, tb6.Text);

                MessageBox.Show("Movie Added");
            }
        }
コード例 #2
0
        private void addmovie_Click(object sender, EventArgs e)
        {
            int a, b;

            if (textBoxtitle.Text == "" || textBoxrating.Text == "" || textBoxyear.Text == "" || textboxcopies.Text == "" || textboxplot.Text == "" || extboxgenere.Text == "")
            {
                MessageBox.Show("****Fill mandatory fields*****");
            }
            else if (!int.TryParse(textBoxyear.Text, out a) || !(int.TryParse(textboxcopies.Text, out b)))
            {
                MessageBox.Show("Year and Copies must be a correct value");
            }
            else
            {
                int rental = 0;
                if ((DateTime.Now.Year - a) > 5)
                {
                    rental = 2;
                }
                else
                {
                    rental = 5;
                }

                DBContextHelper database = new DBContextHelper();
                database.CreateMovie(textBoxtitle.Text, textBoxrating.Text, textBoxyear.Text, rental.ToString(), textboxcopies.Text, textboxplot.Text, extboxgenere.Text);

                MessageBox.Show("Movie Added");
                ALLHIDE();
            }
        }