Exemplo n.º 1
0
 private CamlLogicalJoin(CamlLogicalJoinType logicalJoinType)
     : this(logicalJoinType, new CamlStatement[] {})
 {
 }
Exemplo n.º 2
0
 private CamlLogicalJoin(CamlLogicalJoinType logicalJoinType, IEnumerable <CamlStatement> statements)
 {
     LogicalJoinType = logicalJoinType;
     this.statements = statements.ToList();
 }