Example #1
0
 public void StartSelling(Buyer _buyer)
 {
     for (int i = 0; i < AllProducts.Count; i++)
     {
         _buyer.Bid(AllProducts[i]);
     }
 }