public CreateCommandHandler(IIdentityTypeRepository repository, IUnitOfWork unitOfWork, IMapper mapper, IAuthenticatedUserService authenticatedUser)
 {
     _repository        = repository;
     _unitOfWork        = unitOfWork;
     _mapper            = mapper;
     _authenticatedUser = authenticatedUser;
 }
Beispiel #2
0
 public GetAllQueryHandler(IIdentityTypeRepository repository)
 {
     _repository = repository;
 }
Beispiel #3
0
 public GetCategoryByIdQueryHandler(IIdentityTypeRepository repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }
 public DeleteReligionCommandHandler(IIdentityTypeRepository categoryRepository, IUnitOfWork unitOfWork)
 {
     _categoryRepository = categoryRepository;
     _unitOfWork         = unitOfWork;
 }
 public UpdateCategoryCommandHandler(IIdentityTypeRepository categoryRepository, IUnitOfWork unitOfWork, IMapper mapper)
 {
     _categoryRepository = categoryRepository;
     _unitOfWork         = unitOfWork;
     _mapper             = mapper;
 }