Ejemplo n.º 1
0
        public IActionResult addIngredient([FromBody] Ingredient ingredient)
        {
            _chefService.addIngredient(ingredient);

            return(Ok("successful!"));
        }