public UpdatePoliticalPartyCommandHandler(IPoliticalPartyService service, IMapper mapper)
 {
     _service = service;
     _mapper  = mapper;
 }
Пример #2
0
 public GetAllPoliticalPartiesQueryHandler(IPoliticalPartyService service, IMapper mapper)
 {
     _service = service;
     _mapper  = mapper;
 }
 public GetPoliticalPartyByIdQueryHandler(IPoliticalPartyService service, IMapper mapper)
 {
     _service = service;
     _mapper  = mapper;
 }