using LeaRun.Application.Entity.CustomerManage; using LeaRun.Application.IService.CustomerManage; using LeaRun.Application.Service.CustomerManage; using LeaRun.Util.WebControl; using System.Collections.Generic; using System; namespace LeaRun.Application.Busines.CustomerManage { /// /// 版 本 6.1 /// Copyright (c) 2013-2016 上海力软信息技术有限公司 /// 创 建:佘赐雄 /// 日 期:2016-04-28 16:48 /// 描 述:现金余额 /// public class CashBalanceBLL { private ICashBalanceService service = new CashBalanceService(); #region 获取数据 /// /// 获取列表 /// /// 查询参数 /// 返回列表 public IEnumerable GetList(string queryJson) { return service.GetList(queryJson); } #endregion #region 提交数据 #endregion } }