15 lines
473 B
C#
15 lines
473 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
using WX.CRM.Model.QueryMap;
|
|
|
|
namespace WX.CRM.IBLL.Wx
|
|
{
|
|
public interface IWX_AFTERSALES3 : IRepository<WX_AFTERSALES3>
|
|
{
|
|
void SaveAfterSale(List<WX_AFTERSALES3> list);
|
|
void Save(WX_AFTERSALES3 dto);
|
|
List<AfterSaleAssignView> GetAfterSaleAssignViews(ref Pager pager, string resId, decimal? inneruserId, decimal? bindType, bool? samllorder = null);
|
|
}
|
|
}
|