public Candidate GetCandidate(int legacyCandidateId, bool errorIfNotFound = true)
        {
            Condition.Requires(legacyCandidateId);

            _logService.Debug("Calling CandidateApplicationService to get the user with legacy Id={0}.", legacyCandidateId);

            return(_getCandidateByIdStrategy.GetCandidate(legacyCandidateId, errorIfNotFound));
        }
 public Candidate GetCandidate(Guid id)
 {
     _logger.Debug("Calling CandidateService to get the user with Id={0}.", id);
     return(_getCandidateByIdStrategy.GetCandidate(id, false));
 }