using System.Collections.Generic; using WX.CRM.Common; namespace WX.CRM.IBLL.Base { public interface IBAS_RIGHT { bool Create(ref ValidationErrors errors, WX.CRM.Model.Entity.BAS_RIGHT model); bool CreateList(ref ValidationErrors errors, List models); bool Delete(ref ValidationErrors errors, string id); bool Update(ref ValidationErrors errors, WX.CRM.Model.Entity.BAS_RIGHT model); } }