WhiskWork.Core.MemoryWorkItemRepository.GetWorkItems C# (CSharp) Method

GetWorkItems() public method

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