private void buttonSave_Click(object sender, EventArgs e)
        {
            if (textBoxAuthorName.Text == "")
            {
                MessageBox.Show("Hãy nhập tên tác giả !");
            }
            else
            {
                var author = new TacGia()
                {
                    HoTenTG   = textBoxAuthorName.Text,
                    DiaChi    = textBoxAuthorAddress.Text,
                    DienThoai = textBoxAuthorPhone.Text,
                    TieuSu    = textBoxAuthorBackground.Text
                };

                TacGiaDao dao = new TacGiaDao();
                var       res = dao.insertAuthor(author.HoTenTG, author.DiaChi, author.TieuSu, author.DienThoai);
                if (res > 0)
                {
                    MessageBox.Show("Thêm thành công !");
                    clearAll();
                }
                else
                {
                    MessageBox.Show("Chưa thêm được !");
                }
            }
        }
        private void button2_Click(object sender, EventArgs e)
        {
            var fullname = textBoxFullname.Text;

            if (fullname == "")
            {
                MessageBox.Show("Hãy nhập họ tên để thêm !");
            }
            else
            {
                TacGia tg = new TacGia()
                {
                    HoTenTG   = textBoxFullname.Text,
                    DiaChi    = textBoxAddress.Text,
                    TieuSu    = textBoxBackground.Text,
                    DienThoai = textBoxPhone.Text,
                };
                TacGiaDao tgDao = new TacGiaDao();
                var       res   = tgDao.insertAuthor(tg.HoTenTG, tg.DiaChi, tg.TieuSu, tg.DienThoai);
                if (res > 0)
                {
                    MessageBox.Show("Thêm tác giả thành công !");
                }
                bindDataToGrid();
                clearAll();
            }
        }