19 lines
552 B
C#
19 lines
552 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.MAP;
|
|
using WX.CRM.Model.QueryMap;
|
|
|
|
namespace WX.CRM.IBLL.Csvr
|
|
{
|
|
public interface ICSVR_CALLDATAREPORT
|
|
{
|
|
DataSet GetCallReport(ref Pager pager, QueryUserComboDto usercomboDto, DateTime? V_STIME, DateTime? V_ETIME);
|
|
|
|
List<WD_CallReportModel> Get_UserCallReport(ref Pager pager, int eid);
|
|
|
|
List<WD_CallReportModel> Get_CallReport(ref Pager pager, int wd, QueryUserComboDto usercomboDto, ref string date);
|
|
}
|
|
}
|