Esempio n. 1
0
 //添加订单
 public void addOrder(string orderNum, string goodsName, string client)
 {
     Inf.Add(new Order(orderNum, goodsName, client));
     Console.WriteLine("已添加订单" + orderNum + goodsName + client);
 }