GetYearlys() public method

获取日消费清单
public GetYearlys ( string start, string end ) : List
start string
end string
return List
コード例 #1
0
        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);
        }