Exemplo n.º 1
0
    static void Main()
    {
        Product testProduct = new Product("alabala", true);
        testProduct.Promotion += Product_OnPromotionTypeChanged;
        List<Product> productsList = new List<Product>();
        productsList.Add(testProduct);

        Console.WriteLine("Call event!");
        testProduct.CheckForPromotion(productsList);
    }