Пример #1
0
        public JsonResult ChangeProductSize(int productId, int sizeId = 0, int colorId = 0)
        {
            var model = _productDa.ChangeProductSize(productId, sizeId, colorId);

            return(Json(model, JsonRequestBehavior.AllowGet));
        }