예제 #1
0
 public static OrderThrough CreateOrderThrough(byte orderThroughID, string mode)
 {
     OrderThrough orderThrough = new OrderThrough();
     orderThrough.OrderThroughID = orderThroughID;
     orderThrough.Mode = mode;
     return orderThrough;
 }
예제 #2
0
 public void AddToOrderThroughs(OrderThrough orderThrough)
 {
     base.AddObject("OrderThroughs", orderThrough);
 }