예제 #1
0
 public AndSpecification(AbstractSpecification <T> spec1, AbstractSpecification <T> spec2)
 {
     this.spec1 = spec1;
     this.spec2 = spec2;
 }
예제 #2
0
 public NegateSpecification(AbstractSpecification <T> spec)
 {
     this.spec = spec;
 }
예제 #3
0
 public bool Equals(AbstractSpecification <T> other)
 {
     return(Parameters.SequenceEqual(other.Parameters));
 }