using System.Collections.Generic; using WX.CRM.Common; using WX.CRM.Model.Entity; namespace WX.CRM.IBLL.Res { public interface IRES_CALLOUTCUSTOMER { bool Create(ref ValidationErrors errors, WX.CRM.Model.Entity.RES_CALLOUTCUSTOMER model); bool Delete(ref ValidationErrors errors, string resid, string callType); List GetList(string resid, ref Pager pager); List GetByResIds(string[] resId, string callType); /// /// 资源是否有使用该出局号码的权限 /// /// /// /// bool IsCallOut(string resId, string callType); bool CreateEntities(ref ValidationErrors errors, List entities); } }