public static BasicList <ICondition> AppendRangeCondition(this BasicList <ICondition> tempList, string property,
                                                           object lowRange, object highRange)
 {
     return(tempList.AppendCondition(property, co.GreaterOrEqual, lowRange).AppendCondition(property, co.LessThanOrEqual, highRange));
 }
 public static BasicList <ICondition> AppendCondition(this BasicList <ICondition> tempList, string property, object value)
 {
     return(tempList.AppendCondition(property, co.Equals, value));
 }