using System.Collections.Generic; using WX.CRM.Common; namespace WX.CRM.IBLL.Csvr { public interface ICSVR_BLACKNUMBER_Q { List GetAll(); WX.CRM.Model.Entity.CSVR_BLACKNUMBER GetById(decimal id); List GetByResIds(string[] resId, string blackType); List GetByResUmid(string[] umids, string blackType); List GetPagingData(ref Pager pager, string resId); List GetBlackNumberByRESID(string resid, decimal userid, out string mobile); } }