using System; using System.Data; using WX.CRM.Common; using WX.CRM.Model.Entity; namespace WX.CRM.IBLL.Csvr { public interface ICSVR_CALLRECORD_Q { decimal? GetLastCallRecord(); CSVR_TODAYRECORD GetNewestCallRecord(string resid, decimal salerid, DateTime ctime); string GetLastCoid(); DateTime GetLastStartTime(); DataSet GetOACallRecord(ref Pager pager, string V_GROUPNAME, decimal? V_USEREID, DateTime? V_STIME, DateTime? V_ETIME, int? V_MAXLENGTH, int? V_MINLENGHT, string V_RESID, decimal? V_RECORDID, decimal? V_TYPE); CSVR_CALLRECORD GetModel_CallRecord(decimal pkid); string Sys_Environment_CTI_VER(); DataTable GetRecordByEID(decimal? v_recordid, decimal v_eid, string v_resid, ref Pager pager); } }