public ProductBase(StockBox stockBox, string name, double price, string type, int weight, string brand)
 {
     MyStockBox = stockBox;
     Name       = name;
     Price      = price;
     Type       = type;
     Weight     = weight;
     Brand      = brand;
     MyStockBox.AddItem(this);
 }