public Handler(
     IParameterTranslationRepository translationRepository,
     IMapper mapper)
 {
     _mapper = mapper;
     _translationRepository = translationRepository;
 }
 public Handler(
     IParameterTranslationRepository parameterTranslationRepository,
     IScriptInterpreterUnitOfWork unitOfWork)
 {
     _parameterTranslationRepository = parameterTranslationRepository;
     _unitOfWork = unitOfWork;
 }