CodeGarten.Data.Access.RoleManager.GetAll C# (CSharp) 메소드

GetAll() 공개 메소드

public GetAll ( long structureId ) : IEnumerable
structureId long
리턴 IEnumerable
        public IEnumerable<Role> GetAll(long structureId)
        {
            return _dbManager.DbContext.Roles.Where(rl => rl.StructureId == structureId);
        }