using System.Collections.Generic; using WX.CRM.Common; using WX.CRM.Model.Entity; namespace WX.CRM.IBLL.Csvr { public interface ICSVR_BLACKNUMBER { CSVR_BLACKNUMBER GetEntity(decimal pkid); bool Create(ref ValidationErrors errors, WX.CRM.Model.Entity.CSVR_BLACKNUMBER model); bool Delete(ref ValidationErrors errors, decimal id); bool CreateEntities(ref ValidationErrors errors, List entities); } }