15 lines
572 B
C#
15 lines
572 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
|
|
namespace WX.CRM.IBLL.Csvr
|
|
{
|
|
public interface ICSVR_BLACKNUMBER_Q
|
|
{
|
|
List<WX.CRM.Model.Entity.CSVR_BLACKNUMBER> GetAll();
|
|
WX.CRM.Model.Entity.CSVR_BLACKNUMBER GetById(decimal id);
|
|
List<WX.CRM.Model.Entity.CSVR_BLACKNUMBER> GetByResIds(string[] resId, string blackType);
|
|
List<WX.CRM.Model.Entity.CSVR_BLACKNUMBER> GetPagingData(ref Pager pager, string resId);
|
|
List<WX.CRM.Model.Entity.CSVR_BLACKNUMBER> GetBlackNumberByRESID(string resid, out string mobile);
|
|
}
|
|
}
|