CodeGarten.Data.Access.RoleManager.GetAll C# (CSharp) Méthode

GetAll() public méthode

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