示例#1
0
文件: Shop.cs 项目: Le0W0lf/FoodShop
 //Add new buyer
 public void Add(Buyer buyer)
 {
     //Console.WriteLine("Add new buyer");
     buyer.ToQueue += ToQueue;
     buyer.CallToQueue();
 }