예제 #1
0
 public List <Role> GetAllRole()
 {
     return(_roleDALProvider.GetAll());
 }
예제 #2
0
파일: RoleBLL.cs 프로젝트: dzkuser/XMBoxing
 /// <summary>
 /// 得到所有角色
 /// </summary>
 /// <returns></returns>
 public IQueryable <RoleEntity> GetRoles()
 {
     return(mobjRoleDAL.GetAll());
 }
예제 #3
0
 public List <Role> GetAll()
 {
     return(_roleDAL.GetAll().ToList());
 }
예제 #4
0
 public List <Role> GetAll()
 {
     return(roleDAL.GetAll());
 }
예제 #5
0
 public IEnumerable<RoleDTO> GetAll()
 {
     return dal.GetAll().ToArray();
 }