예제 #1
0
파일: Product.cs 프로젝트: quela/myprojects
 protected void OnPromotionTypeChanged(Product product)
 {
     if (Promotion != null)
     {
         Console.WriteLine("Product {0} is in promotion: {1}", product.name, product.isPromotion);
         InPromotionEventArgs args = new InPromotionEventArgs(product.name);
         Promotion(this, args);
     }
 }
예제 #2
0
파일: Test.cs 프로젝트: quela/myprojects
 public static void Product_OnPromotionTypeChanged(object sender, InPromotionEventArgs eventArgs)
 {
 }