using System.Collections.Generic; using WX.CRM.Common; using WX.CRM.Model.Entity; namespace WX.CRM.IBLL.Ord { public interface IORD_PURPOSEMEMO { /// /// 新增意向工单 /// /// 错误信息 /// 销售工单信息 /// bool Create(ref ValidationErrors errors, ORD_PURPOSEMEMO model); bool updateList(ref ValidationErrors errors, List models); bool Delete_PurposeMemo(ref ValidationErrors errors, decimal memoId); } }