14 lines
467 B
C#
14 lines
467 B
C#
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<WX.CRM.Model.Entity.BAS_RIGHT> models);
|
|
bool Delete(ref ValidationErrors errors, string id);
|
|
bool Update(ref ValidationErrors errors, WX.CRM.Model.Entity.BAS_RIGHT model);
|
|
}
|
|
}
|