TG.WXCRM.V4/IBLL/QH/IQH_CUSTOMERPOSITIONS.cs

13 lines
461 B
C#

using System.Collections.Generic;
using WX.CRM.Common;
using WX.CRM.Model.Entity;
namespace WX.CRM.IBLL.QH
{
public interface IQH_CUSTOMERPOSITIONS : IRepository<QH_CUSTOMERPOSITIONS>
{
List<QH_CUSTOMERPOSITIONS> GetList(ref Pager pager, string userAccount, string year, string quarter);
List<QH_CUSTOMERPOSITIONS> GetList(ref Pager pager, string dept, string exChange, string contractCode, string userAccount, string name);
}
}