Beispiel #1
0
        public async Task<TResponse> Handle(TRequest request, CancellationToken cancellationToken,
            RequestHandlerDelegate<TResponse> next)
        {
            var response = await next();

            await _productIntegrationEventService.PublishEventsThroughEventBusAsync();

            return response;
        }