ComplianceServer/oldcode/IBLL/Res/IRES_ALLOCATESTRATEGY.cs

13 lines
406 B
C#

using WX.CRM.Common;
using WX.CRM.Model.Entity;
namespace WX.CRM.IBLL.Res
{
public interface IRES_ALLOCATESTRATEGY
{
bool Create_AllocateStrategy(ref ValidationErrors errors, RES_ALLOCATESTRATEGY model);
bool Update_AllocateStrategy(ref ValidationErrors errors, RES_ALLOCATESTRATEGY model);
bool Delete_AllocateStrategy(ref ValidationErrors errors, decimal id);
}
}