username@email.com
2025-05-14 99ddfbcecf0fa2881eb3a91028257eef87dab6de
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/**  
* EC_OrderDialogueBLL.cs
*
* 功 能: 订单请求业务逻辑类
* 类 名: EC_OrderDialogueBLL
*
* Ver    变更日期             负责人  变更内容
* ───────────────────────────────────
* V0.01  2013-5-11 15:19       吴崎均   初版
* 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.IDAL;
using AbstractFactory;
using CY.Model;
 
namespace CY.BLL
{
    /// <summary>
    /// 订单请求业务逻辑类
    /// </summary>
    public class EC_OrderDialogueBLL
    {
 
        IEC_OrderDialogueDAL _iEC_OrderDialogueDAL = null;
        /// <summary>
        /// 初始化构造
        /// </summary>
        public EC_OrderDialogueBLL() 
        {
            _iEC_OrderDialogueDAL = Factory.GetDALByInterfaceName(DALInterface.IEC_OrderDialogueDAL) as IEC_OrderDialogueDAL;
        }
 
        /// <summary>
        /// 分页查询订单请求
        /// </summary>
        /// <param name="pagination">分页对象</param>
        /// <param name="searchParam">可空查询条件</param>
        /// <returns></returns>
        public IEnumerable<EC_OrderDialogue> SelectModelPage(Infrastructure.Query.Pagination pagination,  Dictionary<int, object> searchParam)
        {
           return _iEC_OrderDialogueDAL.SelectModelPage(pagination,searchParam);
        }
 
    }
}