public BetweenConstraint(Every b, Timestamp time)
 {
     _b = b;
     _from = time;
 }
Example #2
0
 public Every And(Every every)
 {
     _operators.Add(every);
     return this;
 }