public IHttpActionResult GetProduct(string name) { var product = _productMapper.GetProductByUrlName(name); if (product == null) { return(NotFound()); } return(Ok(_productMapper.ProductToProductVm(product))); }