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 YYEdiShipService { YYEdiShipDal dal = new YYEdiShipDal(RemotingProxyProvider._remotingProxy); /// /// 汇总 /// /// /// public DataTable GetYYEDIShipData(string aWhere, Pager pager, ref int totalCount) { return dal.GetYYEDIShipData(aWhere, pager, ref totalCount); } /// /// 配置集合 /// /// 数据集 public ArrayList GetModelName(string typeName) { return dal.GetModelName( typeName); } /// ///车型集合 /// /// 数据集 public ArrayList GetTypeName() { return dal.GetTypeName(); } } }