14 lines
415 B
C#
14 lines
415 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.QH
|
|
{
|
|
public interface IQH_PRODUCT : IRepository<QH_PRODUCT>
|
|
{
|
|
List<QH_PRODUCT> GetList(ref Pager pager, string productCode, string productName);
|
|
// bool Add(ref ValidationErrors errors, QH_PRODUCT model);
|
|
//bool Update(ref ValidationErrors errors, QH_PRODUCT model);
|
|
}
|
|
}
|