using System.Collections.Generic; using WX.CRM.Common; namespace WX.CRM.IBLL.Base { public interface IBAS_COMPANY_Q { WX.CRM.Model.Entity.BAS_COMPANY GetModel_Company(decimal id); WX.CRM.Model.Entity.BAS_COMPANY GetModelByCode(string code); List GetList_Company(ref Pager pager, string companyName, string isOutAgent, string companyCode, string cTime1, string cTime2); List GetList(); } }