using System; using System.Collections.Generic; using WX.CRM.Common; using WX.CRM.Model.Entity; using WX.CRM.Model.MAP; namespace WX.CRM.IBLL.Csvr { public interface ICSVR_TODOITEM_Q { List GetAllToDoItems(); List GetToDoItemsByParam(ref Pager pager, string resid, string memo, DateTime? ctime, DateTime? Etime, decimal status, QueryUserComboDto usercomboDto, string resourcetag, string activity, int? deptlineid); List GetToDoItemsByParamExport(ref Pager pager, string resid, DateTime? ctime, DateTime? Etime, decimal status, QueryUserComboDto usercomboDto, string resourcetag); List GetToDoItemsByDateNow(); List GetToDoItemSoftLogin(); List GetToDoItemRFM(); CSVR_TODOITEM GetToDoItemById(decimal id); } }