Пример #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);