using Pole.ReliableMessage.Masstransit; using System; using System.Collections.Generic; using System.Text; namespace Pole.Application.EventBus { public abstract class IntegrationEventHandler : ReliableEventHandler where TEvent : class { public IntegrationEventHandler(IServiceProvider serviceProvider) : base(serviceProvider) { } } }