public IActionResult MyRecipesIngredientSearchResults(string searchByIngredient)
        {
            User user = authProvider.GetCurrentUser();

            List <Recipe> foundRecipes = recipeDAL.GetRecipesByIngredientAndUserId(searchByIngredient, user.Id);

            return(View(foundRecipes));
        }