1 2 3 4 5
namespace Cmpp298.Assignment3.Domain { internal interface ISpecification< T > { bool IsSatisfiedBy( T item ); } }