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