public GetContactByIdQueryHandler(IContactRepository contactRepository, ISkillRepository skillRepository, ILinkContactSkillRepository linkRepository, IMapper mapper)
 {
     _contactRepository = contactRepository;
     _linkRepository    = linkRepository;
     _skillRepository   = skillRepository;
     _mapper            = mapper;
 }
Exemplo n.º 2
0
 public GetAllLinkContactSkillQueryHandler(ILinkContactSkillRepository linkRepository, IMapper mapper)
 {
     _linkRepository = linkRepository;
     _mapper         = mapper;
 }
 public CreateLinkContactSkillCommandHandler(ILinkContactSkillRepository linkRepository, IMapper mapper)
 {
     _linkRepository = linkRepository;
     _mapper         = mapper;
 }