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