public DashboardDataViewModel GetDashboardData() { var recentComments = _dataProvider.GetRecentComments(); return(new DashboardDataViewModel { NumDrafts = _dataProvider.GetNumDrafts(), NumPosts = _dataProvider.GetNumPublishedPosts(), RecentComments = _mapper.Map <List <DashboardDataCommentViewModel> >(recentComments) }); }