using WX.CRM.Common; namespace WX.CRM.IBLL.Base { public interface IBAS_ROLE { bool Create(ref ValidationErrors errors, WX.CRM.Model.Entity.BAS_ROLE model); bool Delete(ref ValidationErrors errors, decimal id); bool Update(ref ValidationErrors errors, WX.CRM.Model.Entity.BAS_ROLE model); bool Sort(ref ValidationErrors errors, string roleIdStr, string sortIdStr); } }