using MediatR; using System; using System.Collections.Generic; using System.Text; using System.Threading; using System.Threading.Tasks; namespace Pole.Domain { public interface IDomainEventHandler : INotificationHandler where TCommand : IDomainEvent { } }