private void btnAddServicesForHalls_Click(object sender, System.EventArgs e)
 {
     try
     {
         frmIns_BookingHalls_Services afrmIns_BookingHalls_Services = new frmIns_BookingHalls_Services(this, this.CurrentIDBookingHall, this.aNewPaymentHEN);
         afrmIns_BookingHalls_Services.Show();
     }
     catch (Exception ex)
     {
         MessageBox.Show("frmTsk_UpdBookingHall.btnPrintPaymentTotal_Click\n" + ex.ToString(), "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }