You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel/Services/Specification/ISpecificationFinder.cs

14 lines
318 B

6 years ago
using System;
using System.Collections.Generic;
namespace ZeroLevel.Specification
{
public interface ISpecificationFinder
{
IEnumerable<string> Filters { get; }
6 years ago
Type GetFilterType(string filterName);
6 years ago
ISpecification<T> GetFilter<T>(string filterName, params object[] args);
}
}

Powered by TurnKey Linux.