コード例 #1
0
ファイル: StoreService.cs プロジェクト: Valentina220/ASP.NET
        public Product GetProduct(int productId)
        {
            var product = _productRepository.Get(productId);

            if (product.CategoryID.HasValue)
            {
                product.Category = GetCategory(product.CategoryID.Value);
            }
            return(product);
        }