using System; using System.Collections.Generic; using System.Linq.Expressions; namespace Microsoft.eShopWeb.ApplicationCore.Interfaces { public interface ISpecification { Expression> Criteria { get; } List>> Includes { get; } List IncludeStrings { get; } } }