ComplianceServer/oldcode/BLL/Res/AutoDial_BL.cs

29 lines
727 B
C#

using System;
using System.Data;
using WX.CRM.DAL.Res;
using WX.CRM.IBLL.Res;
namespace WX.CRM.BLL.Res
{
public class AutoDial_BL : IAutoDial
{
public DataTable GetAutoDialPool()
{
return new AutoDial_Dal().GetAutoDialPool();
}
public void ClearAutoDialPool()
{
new AutoDial_Dal().ClearAutoDialPool();
}
public int InsertDataToMySql(string mobile, string resid)
{
return new AutoDial_Dal().InsertDataToMySql(mobile, resid);
}
public DataTable GetAutoDialDayReport(DateTime stime, DateTime etime)
{
return new AutoDial_Dal().GetAutoDialDayReport(stime, etime);
}
}
}