Exemplo n.º 1
0
 public void IsNotNull()
 {
     this.Category = DateTimeFilterCategory.IsNotNull;
 }
Exemplo n.º 2
0
 public FieldFilterDateTime(ExprField field) :
     base(field)
 {
     this.Inclusive = true;
     this.Category  = DateTimeFilterCategory.NoFilter;
 }
Exemplo n.º 3
0
 public void InRange(RangeDateTime range)
 {
     this.Category = DateTimeFilterCategory.InRange;
     this.range    = range;
 }
Exemplo n.º 4
0
 public void IsInRange(AdlClient.Models.RangeDateTime range)
 {
     this.Category = DateTimeFilterCategory.IsInRange;
     this.range    = range;
 }