namespace Abp.Events.Bus.Handlers { /// /// Defines an interface of a class that handles events of type . /// /// Event type to handle public interface IEventHandler : IEventHandler { /// /// Handler handles the event by implementing this method. /// /// Event data void HandleEvent(TEventData eventData); } }