private void button2_Click(object sender, EventArgs e)
 {
     if (MessageBox.Show("Bạn có muốn xóa hóa đơn này không?", "Thông báo", MessageBoxButtons.YesNo, MessageBoxIcon.Information) == DialogResult.Yes)
     {
         using (QLBanXeEntities1 quanli = new QLBanXeEntities1())
         {
             PHIEUNHAP hd = quanli.PHIEUNHAPs.FirstOrDefault(p => p.MaPN == mapn);
             if (hd != null)
             {
                 quanli.PHIEUNHAPs.Remove(hd);
                 quanli.SaveChanges();
                 MessageBox.Show("Đã xóa!");
                 quanlinhaphang_Load(sender, e);
             }
         }
     }
 }
 private void button3_Click(object sender, EventArgs e)
 {
     if (mapn == "")
     {
         MessageBox.Show("Hãy chọn khách hàng cần sửa!");
         return;
     }
     using (QLBanXeEntities1 quanli = new QLBanXeEntities1())
     {
         PHIEUNHAP kh = quanli.PHIEUNHAPs.FirstOrDefault(p => p.MaPN == mapn);
         //kh.MaPN = txtmaphieunhap.Text;
         kh.NgayLapPN = txtngaynhap.Value;
         kh.TongTien  = int.Parse(txttongtiennhap.Text);
         kh.TinhTrang = txttinhtrang.Text;
         kh.MaNCC     = cbncc.Text;
         kh.MaNV      = cbmanv.Text;
         quanli.SaveChanges();
         MessageBox.Show("Sửa thành công", "Thông báo", MessageBoxButtons.YesNo, MessageBoxIcon.Information);
         quanlinhaphang_Load(sender, e);
     }
 }