private void btn_Sua_Click(object sender, EventArgs e)
        {
            DTO_tbl_BenhNhan bn = new DTO_tbl_BenhNhan();

            bn.CCCD     = dgv_BenhNhan.Rows[row].Cells[0].Value.ToString();
            bn.HoTen    = txt_HoTen.Text;
            bn.MaBHYT   = txt_MaBHYT.Text;
            bn.MatKhau  = txt_MatKhau.Text;
            bn.SDT      = txt_MatKhau.Text;
            bn.NgaySinh = dtp_NgaySinh.Value;
            bn.DiaChi   = txt_DiaChi.Text;
            if (rdb_Nam.Checked)
            {
                bn.GioiTinh = "Nam";
            }
            else
            {
                bn.GioiTinh = "Nữ";
            }
            bus_benhnhan.UpdateBenhNhan(bn);
            FormBacSi_QuanLyBenhNhan_Load(sender, e);
        }
        private void btn_Sua_Click(object sender, EventArgs e)
        {
            DTO_tbl_BenhNhan bn = new DTO_tbl_BenhNhan();

            bn.CCCD    = dgv_BenhNhan.Rows[row].Cells[0].Value.ToString();//không lấy trên textbox vì textbox có thể bị chỉnh sửa
            bn.MatKhau = txt_MatKhau.Text;
            bn.HoTen   = txt_HoTen.Text;
            if (rdb_Nam.Checked == true)
            {
                bn.GioiTinh = "Nam";
            }
            else
            {
                bn.GioiTinh = "Nữ";
            }
            bn.NgaySinh = dtp_NgaySinh.Value;
            bn.MaBHYT   = txt_MaBHYT.Text;
            bn.DiaChi   = txt_DiaChi.Text;
            bn.SDT      = txt_SDT.Text;
            bus.UpdateBenhNhan(bn);

            FormQuanLyBenhNhan_Load(sender, e);
        }