You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
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 ) ;
/// <summary>
/// 查询车型
/// </summary>
/// <returns></returns>
public ArrayList GetModelType ( )
{
return dal . GetModelType ( ) ;
}
/// <summary>
/// 获取枚举表
/// </summary>
/// <param name="enum_type">枚举类型</param>
/// <returns></returns>
public ArrayList GetEnum ( string enum_type )
{
return dal . GetEnum ( enum_type ) ;
}
/// <summary>
/// 查询
/// </summary>
/// <param name="value"></param>
/// <returns></returns>
public ArrayList GetQuery ( string value , ref DataTable dt )
{
return dal . GetQuery ( value , ref dt ) ;
}
}
}