1 2 3 4 5
namespace Marina.Infrastructure { public interface ISpecification< T > { bool IsSatisfiedBy( T item ); } }