private void btnCapNhat_Click(object sender, EventArgs e)
 {
     try
     {
         MemoryStream ms = new MemoryStream();
         ptAnh.Image.Save(ms, ptAnh.Image.RawFormat);
         byte[] b = ms.GetBuffer();
         ms.Close();
         LopXuLyDuLieu.QuanLyNhanVien x = new LopXuLyDuLieu.QuanLyNhanVien();
         x.CapNhatNhanVien(txtMaNhanVien.Text, txtTenNhanVien.Text, txtTuoi.Text, txtDiaChi.Text, txtSDT.Text, cbGioiTinh.Text, cbLoaiNhanVien.Text, txtLuong.Text, txtCaLV.Text, b, ref err);
         MessageBox.Show("Đã Cập Nhật Xong!!!");
     }
     catch (SqlException)
     {
         MessageBox.Show("Lỗi Rồi!!!");
     }
 }
 private void btnThem_Click(object sender, EventArgs e)
 {
     try
     {
         if (img.Length > 1)
         {
             LopXuLyDuLieu.QuanLyNhanVien x = new LopXuLyDuLieu.QuanLyNhanVien();
             x.ThemNhanVien(txtMaNhanVien.Text, txtTenNhanVien.Text, txtTuoi.Text, txtDiaChi.Text, txtSDT.Text, cbGioiTinh.Text, cbLoaiNhanVien.Text, txtLuong.Text, txtCaLV.Text, bytes, ref err);
             MessageBox.Show("Đã Thêm Xong!!!");
         }
         else
         {
             MessageBox.Show("Thiếu Ảnh");
         }
     }
     catch (SqlException)
     {
         MessageBox.Show("Lỗi rồi !!!");
     }
 }