private void btnBook_NewCategory_Click(object sender, EventArgs e)
        {
            if (txtBook_CategoryName.Text.Length > 0)
            {
                TheLoai_DTO theLoai_DTO = new TheLoai_DTO();
                theLoai_DTO.MaTheLoai  = lblBook_CategoryID.Text;
                theLoai_DTO.TenTheLoai = txtBook_CategoryName.Text;
                theLoai_DTO.TrangThai  = true;

                if (theLoai_BUS.ThemTheLoai(theLoai_DTO) == true)
                {
                    MessageBox.Show("Add Successfully", "Nocie", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                    this.Close();
                }
                else
                {
                    MessageBox.Show("Add Failed", "Nocie", MessageBoxButtons.OK, MessageBoxIcon.Error);
                }
            }
        }
 // thêm vào danh sách thể loại
 void Them()
 {
     if (txtTenTheLoai.Text == "")
     {
         MessageBox.Show("Không được bỏ trống tên thể loại!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
         txtTenTheLoai.Focus();
     }
     else
     {
         if (MessageBox.Show("Bạn thực sự muốn thêm thể loại này?", "Thông báo", MessageBoxButtons.OKCancel, MessageBoxIcon.Question) == DialogResult.OK)
         {
             TheLoai_DTO tl = new TheLoai_DTO();
             tl.TenTheLoai = txtTenTheLoai.Text;
             string ketQua = TheLoai_BUS.ThemTheLoai(tl);
             if (ketQua != "Success")
             {
                 MessageBox.Show(ketQua, "Lỗi");
                 return;
             }
             MessageBox.Show("Thêm thể loại thành công");
             HienThiDanhSachTheLoai();
         }
     }
 }