/**
* IEC_OrderDialogueDAL.cs
*
* 功 能: 订单请求数据访问接口
* 类 名: IEC_OrderDialogueDAL
*
* Ver 变更日期 负责人 变更内容
* ───────────────────────────────────
* V0.01 2013-5-11 15:22 吴崎均 初版(分页查询)
* V0.02 2013-5-11 16:38 吴崎均 修改分页查询,非必要条件改用集合传输
* V0.03 2013-6-7 15:58 吴崎均 修改分页查询申请方法使可以按申请人查询
*
*
*
*
*
*
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CY.Model;
namespace CY.IDAL
{
///
/// 订单请求数据访问接口
///
public interface IEC_OrderDialogueDAL
{
///
/// 分页查询订单请求
///
/// 分页对象
/// 可空查询条件
///
IEnumerable SelectModelPage(Infrastructure.Query.Pagination pagination, Dictionary searchParam);
}
}