using System.Collections.Generic; using WX.CRM.Common; namespace WX.CRM.IBLL.Base { public interface IBAS_RIGHT_TOOLBUTTON { bool Create_ToolButton(ref ValidationErrors errors, WX.CRM.Model.Entity.BAS_RIGHT_TOOLBUTTON model); bool Create_ListToolButton(ref ValidationErrors errors, List models); bool Delete_ToolButton(ref ValidationErrors errors, string RightId, decimal ButtonId); } }