using System; using System.Collections.Generic; using System.Linq; using System.Web; using Estsh.Web.Dal; using Estsh.Web.Util; using System.Collections; using System.Data; namespace Estsh.Core.Services { /*************************************************************************************************** * * 作者:张茂忠 * 创建时间:2013.04.23 * 描述:出货单信息查询模块Service层 * 修改日志: * * * *************************************************************************************************/ public class DeliveryOrderReportService { DeliveryOrderReport dal = new DeliveryOrderReport(RemotingProxyProvider._remotingProxy); /// /// 查询车型 /// /// public ArrayList GetModelType() { return dal.GetModelType(); } /// /// 获取枚举表 /// /// 枚举类型 /// public ArrayList GetEnum(string enum_type) { return dal.GetEnum(enum_type); } /// /// 查询 /// /// /// public ArrayList GetQuery(string value,ref DataTable dt) { return dal.GetQuery(value,ref dt); } } }