public GetContactByIdQueryHandler(IContactRepository contactRepository, ISkillRepository skillRepository, ILinkContactSkillRepository linkRepository, IMapper mapper) { _contactRepository = contactRepository; _linkRepository = linkRepository; _skillRepository = skillRepository; _mapper = mapper; }
public GetAllLinkContactSkillQueryHandler(ILinkContactSkillRepository linkRepository, IMapper mapper) { _linkRepository = linkRepository; _mapper = mapper; }
public CreateLinkContactSkillCommandHandler(ILinkContactSkillRepository linkRepository, IMapper mapper) { _linkRepository = linkRepository; _mapper = mapper; }