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

GetAll() public method

public GetAll ( long structureId ) : IQueryable
structureId long
return IQueryable
        public IQueryable<Rule> GetAll(long structureId)
        {
            return _dbManager.DbContext.Rules.Where(r => r.StructureId == structureId);
        }