ComplianceServer/oldcode/IBLL/Sms/ISMS_MSGTEMPLATE.cs

12 lines
353 B
C#

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