Beispiel #1
0
 public bool ValidDiscountForUserID(long user_id)
 {
     try
     {
         bool res = dataContext.fExistValidDiscountForUserID(user_id).GetValueOrDefault(false);
         return(res);
     }
     catch (Exception ex)
     {
         Logger.LogException(ex);
     }
     return(false);
 }