Exemplo n.º 1
0
        public IActionResult Search(string id)
        {
            // Todo: Implement search restrictions to only recipes in your family book
            List <Recipe> model = recipeDAL.SearchForRecipe(id);

            return(View(model));
        }