13 lines
469 B
C#
13 lines
469 B
C#
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<WX.CRM.Model.Entity.BAS_RIGHT_TOOLBUTTON> models);
|
|
bool Delete_ToolButton(ref ValidationErrors errors, string RightId, decimal ButtonId);
|
|
}
|
|
}
|