mirror of https://github.com/ogoun/Zero.git
19 lines
494 B
19 lines
494 B
using System;
|
|
using System.Collections.Generic;
|
|
using ZeroLevel.Specification;
|
|
|
|
namespace ZeroLevel.Contracts.Specification.Building
|
|
{
|
|
public interface ISpecificationBuilder
|
|
{
|
|
string Name { get; }
|
|
Type FilterType { get; }
|
|
IEnumerable<SpecificationParameter> Parameters { get; }
|
|
|
|
void ParametersTraversal(Action<SpecificationParameter> parameterHandler);
|
|
|
|
ISpecification<T> Build<T>();
|
|
|
|
bool Equals(ISpecificationBuilder other);
|
|
}
|
|
} |