23 lines
627 B
C#
23 lines
627 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.DAL.weapp;
|
|
using WX.CRM.IBLL.weapp;
|
|
using WX.CRM.Model.Entity;
|
|
using WX.CRM.Model.QueryMap;
|
|
|
|
namespace WX.CRM.BLL.weapp
|
|
{
|
|
public class WEAPP_GROUP_BL : DbContextRepository<WEAPP_GROUP>, IWEAPP_GROUP
|
|
{
|
|
WEAPP_GROUP_DAL dal = new WEAPP_GROUP_DAL();
|
|
public IList<WEAPP_GROUP> GetGroup(string accountNUm, decimal eid)
|
|
{
|
|
return dal.GetGroup(accountNUm, eid);
|
|
}
|
|
|
|
public WeappUserGroupView GetUserGroup(string accountNum, decimal userEid)
|
|
{
|
|
return dal.GetUserGroup(accountNum, userEid);
|
|
}
|
|
}
|
|
}
|