コード例 #1
0
ファイル: Customer.cs プロジェクト: serhatmorkoc/cepos
 private void RefreshPoint()
 {
     try
     {
         if (adapter != null)
         {
             points = adapter.GetPoint(this);
         }
     }
     catch (Exception ex)
     {
         points = 0;
         EZLogger.Log.Error("Müþteri puaný güncellenemedi.");
         EZLogger.Log.Error(ex);
     }
 }