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