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