예제 #1
0
 public IOrDomainSpecification <TAggregateRoot> Or(IDomainSpecification <TAggregateRoot> specification)
 => new OrDomainSpecification <TAggregateRoot>(this, specification);
예제 #2
0
 public NotDomainSpecification(IDomainSpecification <TAggregateRoot> source)
 {
     Source = source;
 }
예제 #3
0
 public IAndDomainSpecification <TAggregateRoot> And(IDomainSpecification <TAggregateRoot> specification)
 => new AndDomainSpecification <TAggregateRoot>(this, specification);