public IActionResult CreateProduct(Product product) { _repo.AddProduct(product); return(Created($"/api/products/{product.ProductId}", product)); }