public VacancyService(IUnitOfWork uow, IMapper mapper, ISkillMatchingAlgorithm <Guid> matchingAlgorithm) { _uow = uow; _mapper = mapper; _matchingAlgorithm = matchingAlgorithm; }
public MatchingAlgorithmTests(MatchingAlgorithmSeed testSeed) { _matchingGetter = testSeed.GetMatcher(); _skillMatchingAlgorithm = testSeed.GetAlgorithm(); _skillSetModels = testSeed.GetSkillSetModels(); }