Ejemplo n.º 1
0
        public orders Retrieve(int orderID)
        {
            orders order = new orders(orderID);
            if (order.orderID == 10) {

                //see how this is used in the future
                order.orderDate = new DateTimeOffset(2014, 4, 14, 10, 00, 00, new TimeSpan(7, 0, 0));
            }
            return order;
        }
Ejemplo n.º 2
0
 public bool save(orders order)
 {
     return true;
 }