public IActionResult ThemChiTietPhieuNhapData(ChiTietPhieuNhapView ChiTietPhieuNhapView)
 {
     if (ModelState.IsValid)
     {
         _ChiTietPhieuNhapServices.ThemChiTietPhieuNhap(ChiTietPhieuNhapView.ChiTietPhieuNhapDTO);
         return(View(nameof(Index)));
     }
     ViewBag.Error = "Thêm sản phẩm thất bại";
     return(View(nameof(Index)));
 }
 public IActionResult SuaChiTietPhieuNhapData(ChiTietPhieuNhapView ChiTietPhieuNhapView)
 {
     ViewBag.Error = "Cập nhật thành công";
     if (ModelState.IsValid)
     {
         _ChiTietPhieuNhapServices.SuaChiTietPhieuNhap(ChiTietPhieuNhapView.ChiTietPhieuNhapDTO);
         Index();
         return(View(nameof(Index)));
     }
     ViewBag.Error = "Cập nhật thất bại";
     return(View());
 }