private static Product GenerateProduct() { var name = "GenericProduct"; var price = rnd.Next(150); var newProduct = new Product(name, price); return newProduct; }
public int CompareTo(Product other) { return this.Price - other.Price; }