public IEnumerable <VoteDto> GetVotesForUser(string username) { var votes = _couchDb.FindByUsername <Vote>(username); return(_dtoService.ConvertVotes(votes)); }