public IActionResult Get(int id) { var product = _productRepository.GetProductById(id); return(new OkObjectResult(product)); }