Esempio n. 1
0
        public IActionResult EasyRecipes(string order_by = null)
        {
            var recipes = FillRecipesWithCreatorsAndRatings(_recipeRepository.GetByCategoryId(EASY_RECIPRE_CATEGORY_ID));

            ViewBag.OrderBy = order_by;

            return(View(OrderRecipes(recipes, order_by)));
        }