public PartialViewResult dsSize(string ProductGuid)
        {
            shSizeService _size = new shSizeService();

            IEnumerable <shSetSize> dsSize = _size.DanhSachSection_Size(ProductGuid);

            return(PartialView("dsSize", dsSize));
        }
        public ActionResult SizeGuid(string ProductGuid)
        {
            shSizeService _size = new shSizeService();

            IEnumerable <shSetSize> dsSize = _size.DanhSachSection_Size(ProductGuid);

            ViewBag.SizeGuid = new SelectList(dsSize, "SizeGuid", "SizeName", null);

            return(PartialView("SizeGuid", ViewBag.SizeGuid));
        }