コード例 #1
0
        public async Task <IActionResult> AddTagToRecipeAsync(int recipeId, int tagId)
        {
            await _service.AddTagToRecipeAsync(recipeId, tagId);

            return(Ok());
        }