13 lines
396 B
C#
13 lines
396 B
C#
using WX.CRM.Common;
|
|
|
|
namespace WX.CRM.IBLL.Base
|
|
{
|
|
public interface IBAS_INNERUSERGROUP
|
|
{
|
|
bool Create(ref ValidationErrors errors, WX.CRM.Model.Entity.BAS_INNERUSERGROUP model);
|
|
bool Update(ref ValidationErrors errors, WX.CRM.Model.Entity.BAS_INNERUSERGROUP model);
|
|
|
|
bool Save(ref ValidationErrors errors, WX.CRM.Model.Entity.BAS_INNERUSERGROUP model);
|
|
}
|
|
}
|