Account.YearlyManagement.ServiceImplement.YearlyManager.GetYearlys C# (CSharp) Method

GetYearlys() public method

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

            return result;
        }