using System; using System.Collections.Generic; using WX.CRM.Common; using WX.CRM.Model.DTO; using WX.CRM.Model.Entity; namespace WX.CRM.IBLL.Res { public interface IRES_SHAREDPOOL : IRepository { int GetCount(string resTypeCode); List GetList(ref Pager pg, string resid, DateTime? sTime, DateTime? eTime, DateTime? aTime, DateTime? bTime, string cName, string resTypeCode, string noContact, string memoType, decimal? labeltype, DateTime? loginstime, DateTime? loginetime); string FindSharedPoolRes(decimal userId, decimal eid, string resTypeCode); } }