14 lines
503 B
C#
14 lines
503 B
C#
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<WX.CRM.Model.Entity.BAS_COMPANY> GetList_Company(ref Pager pager, string companyName, string isOutAgent, string companyCode, string cTime1, string cTime2);
|
|
List<WX.CRM.Model.Entity.BAS_COMPANY> GetList();
|
|
}
|
|
}
|