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

13 lines
317 B

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

Powered by TurnKey Linux.