18 lines
463 B
C#
18 lines
463 B
C#
using WX.CRM.BLL.Res;
|
|
using WX.CRM.DAL.Csvr;
|
|
using WX.CRM.IBLL.Base;
|
|
|
|
namespace WX.CRM.BLL.Base
|
|
{
|
|
public class BAS_MOBILEAREA_BL : IBAS_MOBILEAREA_Q
|
|
{
|
|
//未分类客户归类
|
|
public string GetMobileArea(string resid)
|
|
{
|
|
RES_RESOURCEMOBILE_BL bl = new RES_RESOURCEMOBILE_BL();
|
|
var mobile = bl.GetNumberByResId(resid);
|
|
return new MOBILEAREA_DAL().GetMobileArea(resid, mobile);
|
|
}
|
|
}
|
|
}
|