1namespace solidware.financials.infrastructure.eventing 2{ 3 public interface EventSubscriber<Event> where Event : eventing.Event 4 { 5 void notify(Event message); 6 } 7}