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);
        }