コード例 #1
0
        public IHttpActionResult GetProduct(string name)
        {
            var product = _productMapper.GetProductByUrlName(name);

            if (product == null)
            {
                return(NotFound());
            }
            return(Ok(_productMapper.ProductToProductVm(product)));
        }