21 lines
649 B
C#
21 lines
649 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.Ord
|
|
{
|
|
public interface IORD_SALEMEMO
|
|
{
|
|
/// <summary>
|
|
/// 新增销售单
|
|
/// </summary>
|
|
/// <param name="errors">错误信息</param>
|
|
/// <param name="model">销售工单信息</param>
|
|
/// <returns></returns>
|
|
bool Create(ref ValidationErrors errors, ORD_SALEMEMO model);
|
|
bool updateList(ref ValidationErrors errors, List<ORD_SALEMEMO> models);
|
|
bool Delete_SaleMemo(ref ValidationErrors errors, decimal memoId);
|
|
void DeleteHmdMemo(string resid);
|
|
}
|
|
}
|