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