using System.Collections.Generic; using WX.CRM.Common; using WX.CRM.Model.Entity; namespace WX.CRM.IBLL.Cache { public interface icache_ord_memo_bl { List GetList(ref Pager pager, string customerId, decimal TypeID, string memoId, string stime, string etime, decimal MemoType, decimal MemoSubtype, string saleDeptId, string groupId, string userId); List GetMemoResId( string customerId , decimal TypeID , string memoId , string stime , string etime , decimal MemoType , decimal MemoSubtype , string saleDeptId , string groupId , string userId); WX.CRM.Model.Entity.CACHE_ORD_MEMO GetInfo(decimal memoid); List GetList_Memoid(string resid); List GetLastMemoByResIds(IEnumerable resIds); } }