Beispiel #1
0
        public List <ProductImage> GetImagesByProductId(int productId)
        {
            var images = _productImageRepository.GetList(x => x.ProductId == productId);

            return(images.ToList());
        }