Exemplo n.º 1
0
        public async Task <IActionResult> GetByTag(int tagId)
        {
            var recipes = await _recipesService.GetByTag(tagId);

            return(Ok(recipes));
        }