19 lines
430 B
C#
19 lines
430 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.BLL.Util;
|
|
using WX.CRM.IBLL.Base;
|
|
|
|
namespace WX.CRM.BLL.Base
|
|
{
|
|
public class BAS_BUSINESS_BL : IBAS_BUSINESS_Q
|
|
{
|
|
/// <summary>
|
|
/// 获取公司业务列表
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public List<WX.CRM.Model.Entity.BAS_BUSINESS> GetList()
|
|
{
|
|
return new CACHE_BL().GetList_Business();
|
|
}
|
|
}
|
|
}
|