27 lines
581 B
C#
27 lines
581 B
C#
using System;
|
|
using System.Data;
|
|
using WX.CRM.DAL.IPSC;
|
|
using WX.CRM.IBLL.IPSC;
|
|
|
|
namespace WX.CRM.BLL.IPSC
|
|
{
|
|
public class IPSC_BL : IIPSC_Q
|
|
{
|
|
/// <summary>
|
|
/// 初始化满意度数据
|
|
/// </summary>
|
|
public DataSet SetCallRecordSatisfaction(DateTime dt)
|
|
{
|
|
return new IPSC_DAL().SetCallRecordSatisfaction(dt);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取坐席状态
|
|
/// </summary>
|
|
public DataSet Get_IVR_Moniter()
|
|
{
|
|
return new IPSC_DAL().Get_IVR_Moniter();
|
|
}
|
|
}
|
|
}
|