13 lines
442 B
C#
13 lines
442 B
C#
using WX.CRM.Common;
|
|
|
|
namespace WX.CRM.IBLL.Base
|
|
{
|
|
public interface IBAS_INNERUSER
|
|
{
|
|
decimal Create(ref ValidationErrors errors, WX.CRM.Model.Entity.BAS_INNERUSER model);
|
|
bool Update(ref ValidationErrors errors, WX.CRM.Model.Entity.BAS_INNERUSER model);
|
|
bool Delete(ref ValidationErrors errors, decimal id);
|
|
void UpdateDismiss(WX.CRM.Model.Entity.BAS_INNERUSER model, decimal optionuserid);
|
|
}
|
|
}
|