Example #1
0
        /// <summary>
        /// 获取一个月的账目流水信息
        /// </summary>
        /// <returns></returns>
        public List <LogMessage> getLogMessageByMonth(DateTime time)
        {
            List <LogMessage> ls = new List <LogMessage>();

            try
            {
                ls = DB.getLogByMonth(time.Year, time.Month);
                return(ls);
            }
            catch (NotFindException e)
            {
                return(null);
            }
        }
Example #2
0
 public List <LogMessage> getLogMessageByMonth(DateTime time)
 {
     return(DB.getLogByMonth(time.Year, time.Month));
 }