public VoteViewModel BaseViewModel(DateTime date) { var votes = voteRepository.CountVotes(date).ToList(); return(new VoteViewModel(votes, date)); }