private static DataTable Get_Annual_Fee() { string maxUpdateDT = null; DataTable table = new DataTable(); if (string.IsNullOrEmpty(_updateDateTime) == false) { maxUpdateDT = _updateDateTime; _updateDateTime = null; } else { maxUpdateDT = _dataAccess.Get_Max_UpdateTime(SMS_TYPE); } if (string.IsNullOrEmpty(maxUpdateDT) == false) { try { long maxUpdateTime = long.Parse(maxUpdateDT); } catch (Exception ex) { classAnnual_FeeLogWriter.WriteLog("Error Get_Annual_Fee(), " + ex.Message); return(null); } if (maxUpdateDT != null) { table = _dataAccess.GetAnnualFee(maxUpdateDT); } } return(table); }