Beispiel #1
0
 public void OnPayment()
 {
     if (OrderInfo.Payment != null)
     {
         OrderInfo.Payment(this, new System.EventArgs());
     }
 }
Beispiel #2
0
 public static void OnPayment(OrderInfo order)
 {
     if (OrderInfo.Payment != null)
     {
         OrderInfo.Payment(order, new System.EventArgs());
     }
 }