ComplianceServer/oldcode/IBLL/Wx/IWX_SZZYSUBPRODUCT.cs

15 lines
451 B
C#

using System.Collections.Generic;
using WX.CRM.Common;
using WX.CRM.Model.Entity;
using WX.CRM.Model.MAP;
namespace WX.CRM.IBLL.Wx
{
public interface IWX_SZZYSUBPRODUCT : IRepository<WX_SZZYSUBPRODUCT>
{
List<WX_SZZYSUBPRODUCT> GetList(decimal[] subProductIds);
WX_SZZYSUBPRODUCT GetModel(decimal subproductid);
List<WX_SZZYSUBPRODUCT> GetList_SubProduct(ref Pager pager, Wx_SzzySubProduct_QueryDto query);
}
}