1namespace solidware.financials.infrastructure 2{ 3 public interface Handles<T> 4 { 5 void handle(T item); 6 } 7}