CodeGarten.Data.Access.RoleManager.GetAll C# (CSharp) Method

GetAll() public method

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