using System.Collections.Generic; using WX.CRM.Common; using WX.CRM.Model.MAP; namespace WX.CRM.IBLL.Ord { public interface IORD_SALEMEMO_Q { List GetList(ref Pager pager, string memoId, string stime, string etime, decimal MemoType, decimal MemoSubtype, QueryUserComboDto userComboDto); List GetMemoResId(string memoId, string stime, string etime, decimal MemoType, decimal MemoSubtype, QueryUserComboDto userComboDto); List GetListByResId(ref Pager pager, string ResId); List GetNoCallTimeByMemoId(decimal[] MemoIds); List GetHgSaleMemo(decimal Memoid, decimal memosubtypeId); } }