Account.MonthlyManagement.ServiceImplement.MonthlyManager.GetMonthlys C# (CSharp) Method

GetMonthlys() public method

public GetMonthlys ( string start, string end ) : List
start string
end string
return List
        public List<Monthly> GetMonthlys(string start, string end)
        {
            List<Monthly> result = null;
            try
            {
                result = _service.GetMonthlys(start, end);
            }
            catch (Exception e)
            {
                _log.Error("GetMonthlys(string start, string end)", e);
                throw new Exception("获取月消费清单出错");
            }

            return result;
        }