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); }