private void btnViewReport_Click(object sender, EventArgs e)
        {
            if (String.IsNullOrEmpty(inputMonth.Text))
            {
                MessageBox.Show("Vui lòng nhập tháng cần xem báo cáo!", "THÔNG BÁO");
                return;
            }

            if (IsNumber(inputMonth.Text))
            {
                int month = int.Parse(inputMonth.Text);
                if (month < 1 || month > 12)
                {
                    MessageBox.Show("Tháng không hợp lệ!", "THÔNG BÁO");
                }
                else
                {
                    dgvDoanhThu.DataSource = report.BaoCaoDoanhThu(month);
                }
            }
            else
            {
                MessageBox.Show("Tháng không hợp lệ!", "THÔNG BÁO");
            }
        }