public Vote GetVote(string resolutionId) { string userId = _context.GetUserByEmail(GetUserEmailFromRequest()).Id; Vote vote = _context.GetVote(resolutionId, userId); return(vote); }