WhiskWork.Core.MemoryWorkItemRepository.GetWorkItems C# (CSharp) Метод

GetWorkItems() публичный Метод

public GetWorkItems ( string path ) : IEnumerable
path string
Результат IEnumerable
        public IEnumerable<WorkItem> GetWorkItems(string path)
        {
            return _workItems.Values.Where(wi => wi.Path == path).ToList();
        }