public async Task <Unit> Handle(UpdateVoterCommand request, CancellationToken cancellationToken)
            {
                var voterFromDb = await _voterRepository.FindAsync(request.VoterId);

                await _voterRepository.UpdateAgeAsync(request.VoterId, request.VoterForUpdateDto.Age);

                return(Unit.Value);
            }