ComplianceServer/oldcode/IBLL/Base/IBAS_INNERDEPARTMENT.cs

12 lines
366 B
C#

using WX.CRM.Common;
namespace WX.CRM.IBLL.Base
{
public interface IBAS_INNERDEPARTMENT
{
bool Create(ref ValidationErrors errors, WX.CRM.Model.Entity.BAS_INNERDEPARTMENT model);
bool Delete(ref ValidationErrors errors, decimal id);
bool Update(ref ValidationErrors errors, WX.CRM.Model.Entity.BAS_INNERDEPARTMENT model);
}
}