Brewage.Web.Controllers.HomeController.Beer C# (CSharp) Method

Beer() public method

public Beer ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult Beer()
        {
            ViewData["RecipeList"] = _recipeService.GetRecentRecipes(10);
            return View();
        }