Exemplo n.º 1
0
        public ActionResult <ReceitaIngrediente> GetIngrediente(int id)
        {
            var ingrediente = ingredienteService.ObterPorId(id);

            if (ingrediente == null)
            {
                return(NotFound());
            }

            return(ingrediente);
        }