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