public IActionResult UpdateRecipe(int Id, Recipe recipe) { _chefService.UpdateRecipe(Id, recipe); return(Ok("successful!")); }