15 lines
413 B
C#
15 lines
413 B
C#
using WX.CRM.DAL.Res;
|
|
using WX.CRM.IBLL.Res;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.BLL.Res
|
|
{
|
|
public class RES_MOBILEQUERYLOG_BL : DbContextRepository<RES_MOBILEQUERYLOG>, IRES_MOBILEQUERYLOG
|
|
{
|
|
RES_ALLOCATE_DAL dal = new RES_ALLOCATE_DAL();
|
|
public bool CanShowMobile(string resId, decimal userId)
|
|
{
|
|
return dal.CanShowResMobile(resId, userId);
|
|
}
|
|
}
|
|
} |