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