Exemple #1
0
 public SupplierAI(string name, float discount) : base(name)
 {
     Inventory          = new InventoryAI();
     DiscountPercentage = discount;
 }
Exemple #2
0
 public SupplierAI(string name) : base(name)
 {
     Inventory          = new InventoryAI();
     DiscountPercentage = 0f;
 }