예제 #1
0
 public CrmFilterXml(CrmFilterTypeXml type, CrmConditionXml condition)
 {
     this.Type = type;
     this.Conditions = new List<CrmConditionXml>() { condition };
     //this.Conditions.ToList().Add(condition);
     this.Filters = new List<CrmFilterXml>();
 }
예제 #2
0
 public void AddCondition(CrmConditionXml condition)
 {
     this.Conditions.Add(condition);
 }