📄 seldatasouce.cs
字号:
using System;
using System.Collections.Generic;
using System.Text;
using DAL;
using Model;
namespace CommBLL
{
public class SelDataSouce
{
public List<Publishers> selPub()
{
PublisherDal pubDal = new PublisherDal();
List<Publishers> list = new List<Publishers>();
list= pubDal.sel();
return list;
}
public List<UserRoles> selRole()
{
RoleDal roleDal = new RoleDal();
List<UserRoles> list = new List<UserRoles>();
list = roleDal.sel();
return list;
}
public List<BookType> selBookType()
{
BookTypeDal bookTypeDal = new BookTypeDal();
List<BookType> list = new List<BookType>();
list = bookTypeDal.selBookType();
return list;
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -