16 lines
405 B
C#
16 lines
405 B
C#
using CRM.Core.Model.Entity;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace CRM.Core.BLL.Base
|
|
{
|
|
public class BAS_GROUPLEADER_BL
|
|
{
|
|
private zxdContext db = new zxdContext();
|
|
public List<BAS_GROUPLEADER> GetListGroupLeaderByUserId(decimal UserId)
|
|
{
|
|
return db.BAS_GROUPLEADER.Where(p => p.INNERUSERID.Equals(UserId)).ToList();
|
|
}
|
|
}
|
|
}
|