1 2 3 4 5
namespace Marina.Infrastructure { public interface IVisitor< T > { void Visit( T item ); } }