添加项目文件。
This commit is contained in:
22
Epost.BLL/RoleInfoBLL.cs
Normal file
22
Epost.BLL/RoleInfoBLL.cs
Normal file
@ -0,0 +1,22 @@
|
||||
using Epost.DAL;
|
||||
using Epost.Model;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Data;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Epost.BLL
|
||||
{
|
||||
public class RoleInfoBLL
|
||||
{
|
||||
RoleInfoDAL dal = new RoleInfoDAL();
|
||||
public List<RoleInfoModel> GetRoleInfoList()
|
||||
{
|
||||
DataTable dt = dal.GetRoleInfoList();
|
||||
List<RoleInfoModel> list = Common.ModelConvertHelper<RoleInfoModel>.ConvertToList(dt);
|
||||
return list;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user