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

GetAll() public méthode

public GetAll ( long structureId ) : IQueryable
structureId long
Résultat IQueryable
        public IQueryable<RoleType> GetAll(long structureId)
        {
            return _dbManager.DbContext.RoleTypes.Where(rt => rt.StructureId == structureId);
        }