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