ComplianceServer/oldcode/IBLL/Quality/IQC_CUSTOMERCOMPLAIN.cs

14 lines
452 B
C#

using WX.CRM.Common;
using WX.CRM.Model.Entity;
namespace WX.CRM.IBLL.Quality
{
public interface IQC_CUSTOMERCOMPLAIN
{
bool Create(ref ValidationErrors errors, QC_CUSTOMERCOMPLAIN model);
bool Update(ref ValidationErrors errors, QC_CUSTOMERCOMPLAIN model);
bool Delete(ref ValidationErrors errors, decimal id);
bool Check(ref ValidationErrors errors, WX.CRM.Model.Entity.QC_CUSTOMERCOMPLAIN model);
}
}