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

GetAll() public méthode

public GetAll ( long structureId ) : IQueryable
structureId long
Résultat IQueryable
        public IQueryable<ContainerType> GetAll(long structureId)
        {
            return _dbManager.DbContext.ContainerPrototypes.Where(cp => cp.StructureId == structureId);
        }