WhiskWork.Core.MemoryWorkItemRepository.GetWorkItems C# (CSharp) Méthode

GetWorkItems() public méthode

public GetWorkItems ( string path ) : IEnumerable
path string
Résultat IEnumerable
        public IEnumerable<WorkItem> GetWorkItems(string path)
        {
            return _workItems.Values.Where(wi => wi.Path == path).ToList();
        }