Пример #1
0
 private void IncrementDiscountCounter(int _ProfileID, int _CouponID)
 {
     try
     {
         DiscountHandler handler = new DiscountHandler();
         handler.IncrementDiscountCounter(_ProfileID, _CouponID);
     }
     catch (Exception ex)
     {
     }
 }
 private void IncrementDiscountCounter(int _ProfileID, int _CouponID)
 {
     try
     {
         DiscountHandler handler = new DiscountHandler();
         handler.IncrementDiscountCounter(_ProfileID, _CouponID);
     }
     catch (Exception ex)
     {
         lblSystemMessage.Text = ex.Message;
     }
 }