private void LuuGhiChu()
 {
     try
     {
         var res = BioNet_Bus.UpdateGhiChuXetNghiem(this.maKQ, this.txtGhiChu.Text);
         if (res.Result)
         {
             this.Close();
         }
         else
         {
             XtraMessageBox.Show("Lỗi khi lưu! \r\n Lỗi chi tiết " + res.StringError, "BioNet - Chương trình sàng lọc sơ sinh!", MessageBoxButtons.OK, MessageBoxIcon.Warning);
         }
     }
     catch (Exception ex)
     {
         XtraMessageBox.Show("Lỗi khi lưu! \r\n Lỗi chi tiết " + ex.ToString(), "BioNet - Chương trình sàng lọc sơ sinh!", MessageBoxButtons.OK, MessageBoxIcon.Warning);
     }
 }