ComplianceServer/oldcode/IBLL/Base/IBAS_SALESDEPARTMENT_Q.cs

17 lines
471 B
C#

using System.Collections.Generic;
using WX.CRM.Common;
using WX.CRM.Model.Entity;
namespace WX.CRM.IBLL.Base
{
public interface IBAS_SALESDEPARTMENT_Q
{
List<WX.CRM.Model.Entity.BAS_SALESDEPARTMENT> GetList(ref Pager pager, string companyId, string deptName, string saleDeptCode, string creationDate1, string creationDate2);
List<WX.CRM.Model.Entity.BAS_SALESDEPARTMENT> GetList();
BAS_SALESDEPARTMENT GetModel(decimal id);
}
}