|
using System;
|
|
using System.Data;
|
|
|
|
namespace WX.CRM.IBLL.Res
|
|
{
|
|
public interface IAutoDial
|
|
{
|
|
DataTable GetAutoDialPool();
|
|
void ClearAutoDialPool();
|
|
int InsertDataToMySql(string mobile, string resid);
|
|
DataTable GetAutoDialDayReport(DateTime stime, DateTime etime);
|
|
}
|
|
} |