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