public ProductLine(Product product) { if (Products == null) { Products = new LinkedList <Product>(); } Products.AddLast(product); }