13 lines
336 B
C#
13 lines
336 B
C#
namespace ZeroFramework.DeviceCenter.Domain.Specifications.Builder
|
|
{
|
|
public interface ISpecificationBuilder<T, TResult> : ISpecificationBuilder<T>
|
|
{
|
|
new Specification<T, TResult> Specification { get; }
|
|
}
|
|
|
|
public interface ISpecificationBuilder<T>
|
|
{
|
|
Specification<T> Specification { get; }
|
|
}
|
|
}
|