Ejemplo n.º 1
0
 private void AddOrderAttribute(OrderElement orderElement, TransactionAttribute att, string attDescription, bool ascending)
 {
     OrderAttributeElement orderAttElement = orderElement.AddOrderAttribute();
     orderAttElement.Attribute = att.Attribute;
     orderAttElement.Description = attDescription;
     orderAttElement.Ascending = ascending;
 }
Ejemplo n.º 2
0
 private OrderElement AddOrder(IGridObject gridObject, string name)
 {
     OrderElement orderElement = new OrderElement(name);
     gridObject.Orders.Add(orderElement);
     return orderElement;
 }