public UniCreationFailedDomainEventHandler(
     ILoggerFactory logger,
     IMapper mapper,
     ISigmaIntegrationEventService sigmaIntegrationEventService)
 {
     _sigmaIntegrationEventService = sigmaIntegrationEventService ?? throw new ArgumentNullException(nameof(sigmaIntegrationEventService));
     _logger = logger ?? throw new ArgumentNullException(nameof(logger));
 }