using System; using System.Collections.Generic; using System.Linq; using System.Text; using Estsh.Web.Util; using Estsh.Web.Dal; using System.Data; using System.Collections; namespace Estsh.BLL { public class YYEDIQueryService { YYEDIQueryDal dal = new YYEDIQueryDal(RemotingProxyProvider._remotingProxy); /// /// 汇总 /// /// /// public DataTable GetYYEDIData(string aWhere, Pager pager, ref int totalCount) { return dal.GetYYEDIData(aWhere, pager, ref totalCount); } } }