25 lines
738 B
C#
25 lines
738 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.Ord
|
|
{
|
|
public interface IORD_SERVICEMEMO
|
|
{
|
|
/// <summary>
|
|
/// 新增服务工单
|
|
/// </summary>
|
|
/// <param name="errors">错误信息</param>
|
|
/// <param name="model">销售工单信息</param>
|
|
/// <returns></returns>
|
|
bool Create(ref ValidationErrors errors, ORD_SERVICEMEMO model, ORD_SERVICEMEMO_EXT ext);
|
|
bool updateList(ref ValidationErrors errors, List<ORD_SERVICEMEMO> models);
|
|
bool Delete_ServiceMemo(ref ValidationErrors errors, decimal memoId);
|
|
}
|
|
|
|
public interface IORD_SERVICEMEMO_EXT : IRepository<ORD_SERVICEMEMO_EXT>
|
|
{
|
|
|
|
}
|
|
}
|