TG.WXCRM.V4/IBLL/Res/IAutoDial.cs

13 lines
312 B
C#

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);
}
}