namespace CRM.Core.Common.EventBus
{
public interface IEventHandler<TEvent> where TEvent : IEvent
void Handle(TEvent @event);
}