blob: 622bdf22ebb23189a504940eb471c7234d974ab9 (
plain)
1
2
3
4
5
6
7
|
using System.Collections.Generic;
namespace Marina.Infrastructure {
public interface IRichEnumerable< T > : IEnumerable< T > {
IEnumerable< T > Where( ISpecification< T > criteriaToSatisfy );
}
}
|