예제 #1
0
 /// <summary>
 /// Initializes a new instance of the OrderClause class.
 /// </summary>
 /// <param name="propertyName">The name of the property to order for.</param>
 /// <param name="criteria">The operator of the new OrderClause object.</param>
 public OrderClause(string propertyName, OrderClauseCriteria criteria)
 {
     this.propertyName = propertyName;
     this.criterion    = criteria;
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the OrderClause class.
 /// </summary>
 /// <param name="propertyName">The name of the property to order for.</param>
 /// <param name="criteria">The operator of the new OrderClause object.</param>
 public OrderClause(string propertyName, OrderClauseCriteria criteria)
 {
     this.propertyName = propertyName;
     this.criterion = criteria;
 }