12345678910111213141516171819202122232425262728 |
- using LeaRun.Application.Entity.MessageManage;
- using LeaRun.Application.IService.MessageManage;
- using LeaRun.Application.Service.MessageManage;
- using System.Collections.Generic;
- namespace LeaRun.Application.Busines.MessageManage
- {
- /// <summary>
- /// 版 本 V6.1
- /// Copyright (c) 2013-2016 上海力软信息技术有限公司
- /// 创建人:陈彬彬
- /// 日 期:2015.11.25 16:12
- /// 描 述:用户管理
- /// </summary>
- public class IMUserBLL
- {
- private IMsgUserService service = new IMUserService();
- /// <summary>
- /// 用户列表
- /// </summary>
- /// <returns></returns>
- public IEnumerable<IMUserModel> GetList(string OrganizeId)
- {
- return service.GetList(OrganizeId);
- }
- }
- }
|