private void btLuuLai_Click_1(object sender, EventArgs e)
        {
            DialogResult traloi;

            traloi = MessageBox.Show("Bạn có muốn lưu lại món cũ", "Trả lời", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
            if (traloi == DialogResult.Yes)
            {
                string active = "Yes";
                string tt;
                if (lbTrangThai.Text == "Hiện có")
                {
                    tt = "Yes";
                }
                else
                {
                    tt = "No";
                }
                cFood.UpdateFood(Convert.ToInt32(Id), lbTen.Text, Convert.ToInt32(lbGia.Text), tt, Convert.ToInt32(lbGiamGia.Text), active, lbLoai.Text);
                FQlyMonCu qlyMonCu = (FQlyMonCu)this.ParentForm;
                qlyMonCu.Reload();
            }
        }
        private void btLuu_Click(object sender, EventArgs e)
        {
            try
            {
                if (tbGia.Text == "" || tbGiamGia.Text == "" || tbTen.Text == "")
                {
                    throw new Exception();
                }
                if (!them)
                {
                    DialogResult traloi;
                    traloi = MessageBox.Show("Bạn có muốn lưu thay đổi", "Trả lời", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
                    if (traloi == DialogResult.Yes)
                    {
                        string tt;
                        if (cbTrangThai.Checked == true)
                        {
                            tt = "Yes";
                        }
                        else
                        {
                            tt = "No";
                        }
                        //string err = "";
                        cFood.UpdateFood(Convert.ToInt32(this.id), tbTen.Text, Convert.ToInt32(tbGia.Text), tt, Convert.ToInt32(tbGiamGia.Text), "Yes", cbbLoai.Text);
                        luu = true;
                    }

                    //else
                    //{
                    //    XuLyAnhHuyThaoTac();
                    //}
                }
                if (them)
                {
                    DialogResult traloi;
                    traloi = MessageBox.Show("Bạn có muốn lưu thay đổi", "Trả lời", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
                    if (traloi == DialogResult.Yes)
                    {
                        string a = Application.StartupPath + "\\image\\backup.jpg";
                        if (!File.Exists(a))
                        {
                            throw new Exception();
                        }
                        string tt;
                        if (cbTrangThai.Checked == true)
                        {
                            tt = "Yes";
                        }
                        else
                        {
                            tt = "No";
                        }

                        //string err = "";
                        int id = cFood.InsertFoodAndGetInsertedFood(tbTen.Text, Convert.ToInt32(tbGia.Text), tt, Convert.ToInt32(tbGiamGia.Text), "Yes", cbbLoai.Text);

                        ThemHinhAnh(id);
                        luu = true;
                    }
                }


                this.Close();
            }
            catch (FormatException)
            {
                MessageBox.Show("Nhập sai định dạng", "Nhập Sai", MessageBoxButtons.OK, MessageBoxIcon.Warning);
            }
            catch
            {
                MessageBox.Show("Không được để trống thông tin", "Nhập Sai", MessageBoxButtons.OK, MessageBoxIcon.Warning);
            }
        }