コード例 #1
0
        public async Task <IActionResult> SearchByComponents(string searchComponents)
        {
            var recipes = await _recipeService.BrowseAsyncComponents(searchComponents);

            await _recipeService.GetAllRecipeAsync();

            return(Json(recipes));
        }