CapRaffle.Controllers.StatisticController.Category C# (CSharp) Method

Category() public method

public Category ( int categoryId ) : System.Web.Mvc.ActionResult
categoryId int
return System.Web.Mvc.ActionResult
        public ActionResult Category(int categoryId)
        {
            var winners = repository.CategoryStatistics(categoryId);
            ViewBag.MenuController = "Category";
            ViewBag.MenuAction = "Index";
            return View(winners);
        }