| 1234567891011121314151617181920 |
-
- namespace Abp.Specifications
- {
- /// <summary>
- /// Represents that the implemented classes are composite specifications.
- /// </summary>
- /// <typeparam name="T">The type of the object to which the specification is applied.</typeparam>
- public interface ICompositeSpecification<T> : ISpecification<T>
- {
- /// <summary>
- /// Gets the left side of the specification.
- /// </summary>
- ISpecification<T> Left { get; }
- /// <summary>
- /// Gets the right side of the specification.
- /// </summary>
- ISpecification<T> Right { get; }
- }
- }
|