using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Web;
|
using System.Web.UI;
|
using System.Web.UI.WebControls;
|
using CY.BLL;
|
using CY.Model;
|
using CY.Infrastructure.Query;
|
using CY.Infrastructure.Common;
|
using CY.BLL.Sys;
|
using CY.Model.Inquiry;
|
|
|
namespace CY.WebForm.Pages.business
|
{
|
public partial class xiaoshouyejiVisit : BasePage
|
{
|
OA_CorporateClientsBLL bll_OA_CorporateClientsBLL = null;
|
Sys_DictionaryBLL bll_Sys_DictionaryBLL = null;//字典业务逻辑操作类对象
|
SysInquiry_PrintingTypeBLL bll_SysInquiry_PrintingTypeBLL = null;//印刷业务类型业务逻辑操作类对象
|
|
//初始化
|
public xiaoshouyejiVisit()
|
{
|
bll_OA_CorporateClientsBLL = new OA_CorporateClientsBLL();
|
bll_Sys_DictionaryBLL = new Sys_DictionaryBLL();
|
bll_SysInquiry_PrintingTypeBLL = new SysInquiry_PrintingTypeBLL();
|
}
|
|
//页面加载
|
protected void Page_Load(object sender, EventArgs e)
|
{
|
|
if (Request["BusinessManagerId"] != null || Request["chaxuntime"] != null)
|
{
|
|
|
|
this.RepClientList.DataSource = bll_OA_CorporateClientsBLL.SelectVisitListByBuzAndTime(Request["BusinessManagerId"].ToInt32(), Request["chaxuntime"]);
|
this.RepClientList.DataBind();
|
|
}
|
}
|
}
|
}
|