private void btnAddKey_Click(object sender, EventArgs e)
 {
     if (!string.IsNullOrEmpty(this.txtLicense.Text.Trim()))
     {
         DLLLicensePS.Reponse res = DLLLicensePS.DECRYPT.CheckLisences(this.TrungTam.ID, string.Empty, this.txtLicense.Text.Trim(), this.NgayServer.Date.ToString("dd/MM/yyyy"), DateTime.Now.Date.ToString("dd/MM/yyyy"));
         if (res != null)
         {
             if (res.TimeRemind > 0)
             {
                 var submit = BioNet_Bus.CapNhatLisence(this.txtLicense.Text.Trim());
                 if (submit.Result)
                 {
                     this.DialogResult = DialogResult.OK;
                     this.Close();
                 }
                 else
                 {
                     XtraMessageBox.Show(submit.StringError, "BioNet sàng lọc sơ sinh", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                 }
             }
             else
             {
                 if (string.IsNullOrEmpty(res.ResultString))
                 {
                     XtraMessageBox.Show("Key này đã hết hạn, vui lòng thử key khác!", "BioNet sàng lọc sơ sinh", MessageBoxButtons.OK, MessageBoxIcon.Information);
                 }
                 else
                 {
                     XtraMessageBox.Show(res.ResultString, "BioNet sàng lọc sơ sinh", MessageBoxButtons.OK, MessageBoxIcon.Information);
                 }
             }
         }
     }
 }