BgEngine.Controllers.StatsController.SidebarStats C# (CSharp) Method

SidebarStats() public method

Get stats for the stats widget
public SidebarStats ( ) : System.Web.Mvc.ActionResult
return System.Web.Mvc.ActionResult
        public ActionResult SidebarStats()
        {
            if ((CodeFirstSecurity.IsAuthenticated) && (CodeFirstRoleServices.IsUserInRole(CodeFirstSecurity.CurrentUserName, BgResources.Security_PremiumRole)))
            {
                return PartialView("SidebarStats", Mapper.Map<StatsDTO, StatsModel>(StatsServices.RetrieveSidebarStats(true)));
            }
            else
            {
                return PartialView("SidebarStats", Mapper.Map<StatsDTO, StatsModel>(StatsServices.RetrieveSidebarStats(false)));
            }
        }