public CreateCategoryCommandHandler(IJobNameRepository repository, IUnitOfWork unitOfWork, IMapper mapper, IAuthenticatedUserService authenticatedUser)
 {
     _repository        = repository;
     _unitOfWork        = unitOfWork;
     _mapper            = mapper;
     _authenticatedUser = authenticatedUser;
 }
 public GetCategoryByIdQueryHandler(IJobNameRepository repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }
 public DeleteCommandHandler(IJobNameRepository repository, IUnitOfWork unitOfWork)
 {
     _repository = repository;
     _unitOfWork = unitOfWork;
 }
 public UpdateCommandHandler(IJobNameRepository repository, IUnitOfWork unitOfWork, IMapper mapper)
 {
     _repository = repository;
     _unitOfWork = unitOfWork;
     _mapper     = mapper;
 }
 public GetAllQueryHandler(IJobNameRepository repository)
 {
     _repository = repository;
 }